mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #7635
447bfae
wallet2: fix unlocked mixup in light wallet mode (moneromooo-monero)
This commit is contained in:
commit
2098941ca0
@ -6035,7 +6035,7 @@ uint64_t wallet2::balance(uint32_t index_major, bool strict) const
|
|||||||
{
|
{
|
||||||
uint64_t amount = 0;
|
uint64_t amount = 0;
|
||||||
if(m_light_wallet)
|
if(m_light_wallet)
|
||||||
return m_light_wallet_unlocked_balance;
|
return m_light_wallet_balance;
|
||||||
for (const auto& i : balance_per_subaddress(index_major, strict))
|
for (const auto& i : balance_per_subaddress(index_major, strict))
|
||||||
amount += i.second;
|
amount += i.second;
|
||||||
return amount;
|
return amount;
|
||||||
@ -6049,7 +6049,7 @@ uint64_t wallet2::unlocked_balance(uint32_t index_major, bool strict, uint64_t *
|
|||||||
if (time_to_unlock)
|
if (time_to_unlock)
|
||||||
*time_to_unlock = 0;
|
*time_to_unlock = 0;
|
||||||
if(m_light_wallet)
|
if(m_light_wallet)
|
||||||
return m_light_wallet_balance;
|
return m_light_wallet_unlocked_balance;
|
||||||
for (const auto& i : unlocked_balance_per_subaddress(index_major, strict))
|
for (const auto& i : unlocked_balance_per_subaddress(index_major, strict))
|
||||||
{
|
{
|
||||||
amount += i.second.first;
|
amount += i.second.first;
|
||||||
|
Loading…
Reference in New Issue
Block a user