From 5e73d732055b3908fb49e37c32bfe61274934e81 Mon Sep 17 00:00:00 2001 From: Greg Lee Date: Tue, 26 Nov 2019 05:46:08 -0500 Subject: [PATCH] Spelling correction --- libraries/chain/transaction_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;