difftreelog
refactor drop TransactionConverter support
in: master
4 files changed
primitives/common/src/types.rsdiffbeforeafterboth49 + Sync49 + Sync50 + 'static;50 + 'static;5152 type TransactionConverter: fp_rpc::ConvertTransaction<UncheckedExtrinsic>53 + Send54 + Sync55 + 'static;5657 fn get_transaction_converter() -> Self::TransactionConverter;58 }51 }59}52}6053runtime/common/ethereum/mod.rsdiffbeforeafterboth17pub mod precompiles;17pub mod precompiles;18pub mod self_contained_call;18pub mod self_contained_call;19pub mod sponsoring;19pub mod sponsoring;20pub mod transaction_converter;2120runtime/common/ethereum/transaction_converter.rsdiffbeforeafterbothno changes
runtime/common/instance.rsdiffbeforeafterboth1use crate::{1use crate::{2 runtime_common::{2 runtime_common::{3 config::ethereum::CrossAccountId, ethereum::transaction_converter::TransactionConverter,3 config::ethereum::CrossAccountId,4 },4 },5 Runtime,5 Runtime,6};6};7use up_common::types::opaque::RuntimeInstance;7use up_common::types::opaque::RuntimeInstance;889impl RuntimeInstance for Runtime {9impl RuntimeInstance for Runtime {10 type CrossAccountId = CrossAccountId;10 type CrossAccountId = CrossAccountId;11 type TransactionConverter = TransactionConverter;1213 fn get_transaction_converter() -> TransactionConverter {14 TransactionConverter15 }16}11}1712