diff options
| author | tobtoht <tob@featherwallet.org> | 2025-02-13 17:38:31 +0000 |
|---|---|---|
| committer | tobtoht <tob@featherwallet.org> | 2025-02-13 17:38:31 +0000 |
| commit | 5a326dba629e1fad4dd1094f91208bc42c38444e (patch) | |
| tree | 76ff4a5d5fd1ca19b7fa73fbd647be90971bfcfa /src | |
| parent | 71c8a726e52513ca358c50a9400988d67a92f7e2 (diff) | |
| parent | f00ce66d409ec6750b15abfe6f4a76de5bdfcd45 (diff) | |
| download | monzero-core-5a326dba629e1fad4dd1094f91208bc42c38444e.tar.gz monzero-core-5a326dba629e1fad4dd1094f91208bc42c38444e.tar.xz monzero-core-5a326dba629e1fad4dd1094f91208bc42c38444e.zip | |
Merge pull request #9718
f00ce66d4 wallet: fix signed_tx_set RangeProofType serialization (jeffro256)
Diffstat (limited to 'src')
| -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; |
