Merge pull request #6038

e8964c2 wallet: do not warn if the rpc cost was free (moneromooo-monero)
This commit is contained in:
luigi1111 2019-10-27 16:27:31 -05:00
commit f9ddda75a2
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ namespace tools
rpc_payment_state.credits = post_call_credits;
rpc_payment_state.expected_spent += expected_credits;
if (pre_call_credits < post_call_credits)
if (pre_call_credits <= post_call_credits)
return;
uint64_t cost = pre_call_credits - post_call_credits;