mirror of
https://github.com/monero-project/monero.git
synced 2025-12-10 00:51:28 +09:00
wallet: fix signed_tx_set RangeProofType serialization
This commit is contained in:
parent
1a725dc82e
commit
f00ce66d40
@ -2451,7 +2451,7 @@ namespace boost
|
|||||||
bool use_bulletproofs = x.rct_config.range_proof_type != rct::RangeProofBorromean;
|
bool use_bulletproofs = x.rct_config.range_proof_type != rct::RangeProofBorromean;
|
||||||
a & use_bulletproofs;
|
a & use_bulletproofs;
|
||||||
if (!typename Archive::is_saving())
|
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;
|
return;
|
||||||
}
|
}
|
||||||
a & x.rct_config;
|
a & x.rct_config;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user