🐛 fixed last commit

This commit is contained in:
EntireTwix 2021-06-27 19:30:16 -07:00
parent 6d6b55025b
commit 3b1a459e18

View file

@ -91,7 +91,9 @@ BankResponse Bank::SendFunds(const std::string &a_name, const std::string &b_nam
b.balance += amount;
b.log.AddTrans(std::move(temp));
});
#if CONSERVATIVE_DISK_SAVE
ChangesMade();
#endif
}
return state;
}