diff --git a/domains/client/domain-operator/src/tests.rs b/domains/client/domain-operator/src/tests.rs index 76f1f0b8c0..b3a421aac4 100644 --- a/domains/client/domain-operator/src/tests.rs +++ b/domains/client/domain-operator/src/tests.rs @@ -87,12 +87,14 @@ fn number_of(consensus_node: &MockConsensusNode, block_hash: Hash) -> u32 { /// Generate a self-contained EVM domain extrinsic, which can be passed to /// `runtime_api().check_extrinsics_and_do_pre_dispatch()`. +#[allow(dead_code)] pub fn generate_eth_domain_sc_extrinsic(tx: EthereumTransaction) -> EvmUncheckedExtrinsic { let call = pallet_ethereum::Call::::transact { transaction: tx }; fp_self_contained::UncheckedExtrinsic::new(RuntimeCall::Ethereum(call), None).unwrap() } /// Generate a pallet-evm call, which can be passed to `construct_and_send_extrinsic_with()`. +#[allow(dead_code)] pub fn generate_evm_domain_call_extrinsic( account_info: AccountInfo, nonce: Option,