diff options
| author | jeffro256 <jeffro256@tutanota.com> | 2025-01-18 00:43:49 -0600 |
|---|---|---|
| committer | jeffro256 <jeffro256@tutanota.com> | 2025-01-18 00:43:49 -0600 |
| commit | f00ce66d409ec6750b15abfe6f4a76de5bdfcd45 (patch) | |
| tree | cc1998ccd4fac6e558b1265c0426744d494a6cad /src/wallet | |
| parent | 1a725dc82ed6356481d01bb7f1368b3ed63a1661 (diff) | |
| download | monzero-core-f00ce66d409ec6750b15abfe6f4a76de5bdfcd45.tar.gz monzero-core-f00ce66d409ec6750b15abfe6f4a76de5bdfcd45.tar.xz monzero-core-f00ce66d409ec6750b15abfe6f4a76de5bdfcd45.zip | |
wallet: fix signed_tx_set RangeProofType serialization
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/wallet2.h | 2 |
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; |
