@@ -428,7 +428,7 @@ namespace cbdc::parsec::agent::runner {
428
428
return true ;
429
429
}
430
430
auto from = maybe_from.value ();
431
- return run_execute_transaction (from, false );
431
+ return start_execute_transaction (from, false );
432
432
}
433
433
434
434
auto evm_runner::run_execute_dryrun_transaction () -> bool {
@@ -441,7 +441,7 @@ namespace cbdc::parsec::agent::runner {
441
441
auto & dryrun_tx = maybe_tx.value ();
442
442
m_tx = std::move (dryrun_tx.m_tx );
443
443
444
- return run_execute_transaction (dryrun_tx.m_from , true );
444
+ return start_execute_transaction (dryrun_tx.m_from , true );
445
445
}
446
446
447
447
auto evm_runner::check_base_gas (const evm_tx& evmtx, bool is_readonly_run)
@@ -519,8 +519,8 @@ namespace cbdc::parsec::agent::runner {
519
519
return tx_ctx;
520
520
}
521
521
522
- auto evm_runner::run_execute_transaction (const evmc::address& from,
523
- bool is_readonly_run) -> bool {
522
+ auto evm_runner::start_execute_transaction (const evmc::address& from,
523
+ bool is_readonly_run) -> bool {
524
524
auto tx_ctx = make_tx_context (from, m_tx, is_readonly_run);
525
525
526
526
m_host = std::make_unique<evm_host>(m_log,
@@ -549,7 +549,7 @@ namespace cbdc::parsec::agent::runner {
549
549
broker::lock_type::write ,
550
550
[this ](const broker::interface::try_lock_return_type& res) {
551
551
m_log->trace (m_ticket_number, " read from account" );
552
- handle_lock_from_account (res);
552
+ handle_lockfromaccount_and_continue_exec (res);
553
553
});
554
554
if (!r) {
555
555
m_log->error (
@@ -620,7 +620,7 @@ namespace cbdc::parsec::agent::runner {
620
620
}
621
621
}
622
622
623
- void evm_runner::handle_lock_from_account (
623
+ void evm_runner::handle_lockfromaccount_and_continue_exec (
624
624
const broker::interface::try_lock_return_type& res) {
625
625
if (!std::holds_alternative<broker::value_type>(res)) {
626
626
m_log->debug (" Failed to read account from shards" );
@@ -684,7 +684,7 @@ namespace cbdc::parsec::agent::runner {
684
684
return ;
685
685
}
686
686
m_log->trace (m_ticket_number, " locked TXID key" );
687
- lock_ticket_number_key ();
687
+ lock_ticket_number_key_and_continue_exec ();
688
688
});
689
689
if (!maybe_sent) {
690
690
m_log->error (" Failed to send try_lock request for TX receipt" );
@@ -693,7 +693,7 @@ namespace cbdc::parsec::agent::runner {
693
693
}
694
694
}
695
695
696
- void evm_runner::lock_ticket_number_key () {
696
+ void evm_runner::lock_ticket_number_key_and_continue_exec () {
697
697
auto maybe_sent = m_try_lock_callback (
698
698
m_host->ticket_number_key (),
699
699
broker::lock_type::write ,
0 commit comments