diff --git a/contracts/eosio.system/delegate_bandwidth.cpp b/contracts/eosio.system/delegate_bandwidth.cpp index 1b8a14da793b9370dd263cdd1ed4338984e17f3f..d7c2b5b7ff9d4de99409c1d00b106adf3ba3a2f1 100644 --- a/contracts/eosio.system/delegate_bandwidth.cpp +++ b/contracts/eosio.system/delegate_bandwidth.cpp @@ -296,7 +296,7 @@ namespace eosiosystem { bool need_deferred_trx = false; if ( req != refunds_tbl.end() ) { //need to update refund refunds_tbl.modify( req, 0, [&]( refund_request& r ) { - if ( net_balance <= asset(0) || cpu_balance <= asset(0) ) { + if ( net_balance < asset(0) || cpu_balance < asset(0) ) { r.request_time = now(); } r.net_amount -= net_balance;