mirror of
https://github.com/monero-project/monero.git
synced 2025-07-11 21:39:32 -04:00
wallet: fix signed_tx_set RangeProofType serialization
This commit is contained in:
parent
1a725dc82e
commit
f00ce66d40
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue