diff --git a/libraries/testing/tester.cpp b/libraries/testing/tester.cpp index 63a0788931f..d2cceff699e 100644 --- a/libraries/testing/tester.cpp +++ b/libraries/testing/tester.cpp @@ -166,7 +166,7 @@ namespace eosio { namespace testing { if( !skip_pending_trxs ) { unapplied_transactions_type unapplied_trxs = control->get_unapplied_transactions(); // make copy of map for (const auto& entry : unapplied_trxs ) { - auto trace = control->push_transaction(entry.second, fc::time_point::maximum()); + auto trace = control->push_transaction(entry.second, fc::time_point::maximum(), DEFAULT_BILLED_CPU_TIME_US ); if(trace->except) { trace->except->dynamic_rethrow_exception(); } @@ -175,7 +175,7 @@ namespace eosio { namespace testing { vector scheduled_trxs; while( (scheduled_trxs = get_scheduled_transactions() ).size() > 0 ) { for (const auto& trx : scheduled_trxs ) { - auto trace = control->push_scheduled_transaction(trx, fc::time_point::maximum()); + auto trace = control->push_scheduled_transaction(trx, fc::time_point::maximum(), DEFAULT_BILLED_CPU_TIME_US); if(trace->except) { trace->except->dynamic_rethrow_exception(); }