mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 12:37:08 +11:00
🐛 send funds wasnt logging correctly
This commit is contained in:
parent
f48882d446
commit
bc067bafe9
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ int_fast8_t Bank::SendFunds(const std::string &a_name, const std::string &b_name
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
a.balance -= amount;
|
a.balance -= amount;
|
||||||
a.log.AddTrans(std::forward<Transaction>(temp));
|
a.log.AddTrans(Transaction(temp));
|
||||||
state = true;
|
state = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue