1use crate::{2 runtime_common::{3 config::ethereum::CrossAccountId,4 ethereum::TransactionConverter5 },6 Runtime,7};8use common_types::opaque::RuntimeInstance;910impl RuntimeInstance for Runtime {11 type CrossAccountId = CrossAccountId;12 type TransactionConverter = TransactionConverter;1314 fn get_transaction_converter() -> TransactionConverter {15 TransactionConverter16 }17}difftreelog
source
runtime/common/instance.rs395 Bsourcehistory