Skip to content

Commit

Permalink
GH-1251 Use eosio.token as eosio.system contract can not tierup in ti…
Browse files Browse the repository at this point in the history
…me to be found in logs on slow ci/cd machine
  • Loading branch information
heifner committed Jun 23, 2023
1 parent dc00e24 commit 6008c72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/chain/wasm_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/read_only_trx_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 6008c72

Please sign in to comment.