mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 19:33:28 +01:00
wallet2: use padded bulletproofs for multisig signing
Analogous to #4540
This commit is contained in:
parent
4cbb476cd1
commit
1598f01caf
@ -5997,9 +5997,6 @@ bool wallet2::sign_multisig_tx(multisig_tx_set &exported_txs, std::vector<crypto
|
|||||||
rct::RangeProofType range_proof_type = rct::RangeProofBorromean;
|
rct::RangeProofType range_proof_type = rct::RangeProofBorromean;
|
||||||
if (sd.use_bulletproofs)
|
if (sd.use_bulletproofs)
|
||||||
{
|
{
|
||||||
range_proof_type = rct::RangeProofBulletproof;
|
|
||||||
for (const rct::Bulletproof &proof: ptx.tx.rct_signatures.p.bulletproofs)
|
|
||||||
if (proof.V.size() > 1)
|
|
||||||
range_proof_type = rct::RangeProofPaddedBulletproof;
|
range_proof_type = rct::RangeProofPaddedBulletproof;
|
||||||
}
|
}
|
||||||
bool r = cryptonote::construct_tx_with_tx_key(m_account.get_keys(), m_subaddresses, sources, sd.splitted_dsts, ptx.change_dts.addr, sd.extra, tx, sd.unlock_time, ptx.tx_key, ptx.additional_tx_keys, sd.use_rct, range_proof_type, &msout, false);
|
bool r = cryptonote::construct_tx_with_tx_key(m_account.get_keys(), m_subaddresses, sources, sd.splitted_dsts, ptx.change_dts.addr, sd.extra, tx, sd.unlock_time, ptx.tx_key, ptx.additional_tx_keys, sd.use_rct, range_proof_type, &msout, false);
|
||||||
|
Loading…
Reference in New Issue
Block a user