diff --git a/libraries/chain/transaction_context.cpp b/libraries/chain/transaction_context.cpp index e83a3a9b331..66fcfa776a8 100644 --- a/libraries/chain/transaction_context.cpp +++ b/libraries/chain/transaction_context.cpp @@ -148,7 +148,7 @@ namespace eosio { namespace chain { eager_net_limit = net_limit; - // Possible lower eager_net_limit to what the billed accounts can pay plus some (objective) leeway + // Possibly lower eager_net_limit to what the billed accounts can pay plus some (objective) leeway auto new_eager_net_limit = std::min( eager_net_limit, static_cast(account_net_limit + cfg.net_usage_leeway) ); if( new_eager_net_limit < eager_net_limit ) { eager_net_limit = new_eager_net_limit;