From 6008c728927f524e06a6d77463c5a5c165190c18 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Fri, 23 Jun 2023 13:06:37 -0500 Subject: [PATCH] GH-1251 Use eosio.token as eosio.system contract can not tierup in time to be found in logs on slow ci/cd machine --- libraries/chain/wasm_interface.cpp | 2 +- tests/read_only_trx_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/chain/wasm_interface.cpp b/libraries/chain/wasm_interface.cpp index 5373f26612..c7aeb46f8e 100644 --- a/libraries/chain/wasm_interface.cpp +++ b/libraries/chain/wasm_interface.cpp @@ -106,7 +106,7 @@ namespace eosio { namespace chain { } if(cd) { if (!context.is_applying_block()) - tlog("speculatively executing ${h} with eos vm oc", ("h", code_hash)); + tlog("${a} speculatively executing ${h} with eos vm oc", ("a", context.get_receiver())("h", code_hash)); my->eosvmoc->exec->execute(*cd, my->eosvmoc->mem, context); return; } diff --git a/tests/read_only_trx_test.py b/tests/read_only_trx_test.py index ac86f281d3..3bc209c2c2 100755 --- a/tests/read_only_trx_test.py +++ b/tests/read_only_trx_test.py @@ -120,7 +120,7 @@ def startCluster(): producerNode = cluster.getNode() apiNode = cluster.nodes[-1] - eosioCodeHash = getCodeHash(producerNode, "eosio") + eosioCodeHash = getCodeHash(producerNode, "eosio.token") # eosio.* should be using oc unless oc tierup disabled Utils.Print(f"search: executing {eosioCodeHash} with eos vm oc") found = producerNode.findInLog(f"executing {eosioCodeHash} with eos vm oc")