mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
Merge pull request #5395
15f27c80
wallet2: support multi out txes without change in sanity check (moneromooo-monero)
This commit is contained in:
commit
98f4c8af98
@ -9627,14 +9627,16 @@ bool wallet2::sanity_check(const std::vector<wallet2::pending_tx> &ptx_vector, s
|
|||||||
change -= r.second.first;
|
change -= r.second.first;
|
||||||
MDEBUG("Adding " << cryptonote::print_money(change) << " expected change");
|
MDEBUG("Adding " << cryptonote::print_money(change) << " expected change");
|
||||||
|
|
||||||
|
// for all txes that have actual change, check change is coming back to the sending wallet
|
||||||
for (const pending_tx &ptx: ptx_vector)
|
for (const pending_tx &ptx: ptx_vector)
|
||||||
THROW_WALLET_EXCEPTION_IF(ptx.change_dts.addr != ptx_vector[0].change_dts.addr, error::wallet_internal_error,
|
{
|
||||||
"Change goes to several different addresses");
|
if (ptx.change_dts.amount == 0)
|
||||||
const auto it = m_subaddresses.find(ptx_vector[0].change_dts.addr.m_spend_public_key);
|
continue;
|
||||||
THROW_WALLET_EXCEPTION_IF(change > 0 && it == m_subaddresses.end(), error::wallet_internal_error, "Change address is not ours");
|
THROW_WALLET_EXCEPTION_IF(m_subaddresses.find(ptx.change_dts.addr.m_spend_public_key) == m_subaddresses.end(),
|
||||||
|
error::wallet_internal_error, "Change address is not ours");
|
||||||
required[ptx_vector[0].change_dts.addr].first += change;
|
required[ptx.change_dts.addr].first += ptx.change_dts.amount;
|
||||||
required[ptx_vector[0].change_dts.addr].second = ptx_vector[0].change_dts.is_subaddress;
|
required[ptx.change_dts.addr].second = ptx.change_dts.is_subaddress;
|
||||||
|
}
|
||||||
|
|
||||||
for (const auto &r: required)
|
for (const auto &r: required)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user