difftreelog
fix missing account_code_at impl
in: master
1 file changed
runtime/common/runtime_apis.rsdiffbeforeafterboth451 }451 }452452453 fn account_code_at(address: H160) -> Vec<u8> {453 fn account_code_at(address: H160) -> Vec<u8> {454 use pallet_evm::OnMethodCall;455 <Runtime as pallet_evm::Config>::OnMethodCall::get_code(&address)454 EVM::account_codes(address)456 .unwrap_or_else(|| EVM::account_codes(address))455 }457 }456458457 fn author() -> H160 {459 fn author() -> H160 {