git.delta.rocks / unique-network / refs/commits / 5900bfd2d2db

difftreelog

source

runtime/common/instance.rs395 Bsourcehistory
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}