git.delta.rocks / unique-network / refs/commits / 05c459d3caac

difftreelog

source

runtime/common/instance.rs400 Bsourcehistory
1use crate::{2	runtime_common::{3		config::ethereum::CrossAccountId, ethereum::transaction_converter::TransactionConverter,4	},5	Runtime,6};7use up_common::types::opaque::RuntimeInstance;89impl RuntimeInstance for Runtime {10	type CrossAccountId = CrossAccountId;11	type TransactionConverter = TransactionConverter;1213	fn get_transaction_converter() -> TransactionConverter {14		TransactionConverter15	}16}