aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjeffro256 <jeffro256@tutanota.com>2025-01-18 00:43:49 -0600
committerjeffro256 <jeffro256@tutanota.com>2025-01-18 00:43:49 -0600
commitf00ce66d409ec6750b15abfe6f4a76de5bdfcd45 (patch)
treecc1998ccd4fac6e558b1265c0426744d494a6cad /src
parent1a725dc82ed6356481d01bb7f1368b3ed63a1661 (diff)
downloadmonzero-core-f00ce66d409ec6750b15abfe6f4a76de5bdfcd45.tar.gz
monzero-core-f00ce66d409ec6750b15abfe6f4a76de5bdfcd45.tar.xz
monzero-core-f00ce66d409ec6750b15abfe6f4a76de5bdfcd45.zip
wallet: fix signed_tx_set RangeProofType serialization
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h
index 4f426e89b..f3893c278 100644
--- a/src/wallet/wallet2.h
+++ b/src/wallet/wallet2.h
@@ -2451,7 +2451,7 @@ namespace boost
bool use_bulletproofs = x.rct_config.range_proof_type != rct::RangeProofBorromean;
a & use_bulletproofs;
if (!typename Archive::is_saving())
- x.rct_config = { use_bulletproofs ? rct::RangeProofBulletproof : rct::RangeProofBorromean, 0 };
+ x.rct_config = { use_bulletproofs ? rct::RangeProofPaddedBulletproof : rct::RangeProofBorromean, 0 };
return;
}
a & x.rct_config;