Skip to content

Commit

Permalink
fix CI build error
Browse files Browse the repository at this point in the history
  • Loading branch information
taokayan committed Sep 4, 2023
1 parent f5b8838 commit 6f6695a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion antelope_contracts/contracts/erc20/src/erc20.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ void erc20::onbridgemsg(const bridge_message_t &message) {
}

eosio::name dest_eos_acct(*dest_acc);
if (get_code_hash(dest_eos_acct) != checksum256()) {
if (::erc20::get_code_hash(dest_eos_acct) != checksum256()) {
egresslist_table_t(get_self(), get_self().value).get(dest_eos_acct.value, "native accounts containing contract code must be on allow list for egress bridging");
}

Expand Down

0 comments on commit 6f6695a

Please sign in to comment.