Skip to content

Commit

Permalink
Add unimplemented for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pgherveou committed Jan 14, 2025
1 parent 946db27 commit f878812
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions substrate/bin/node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3301,6 +3301,21 @@ impl_runtime_apis! {
key
)
}

fn trace_block(
_block: Block,
_config: pallet_revive::evm::TracerConfig
) -> Result<Vec<(u32, pallet_revive::evm::EthTraces)>, sp_runtime::DispatchError> {
unimplemented!()
}

fn trace_tx(
_block: Block,
_tx_index: u32,
_config: pallet_revive::evm::TracerConfig
) -> Result<pallet_revive::evm::EthTraces, sp_runtime::DispatchError> {
unimplemented!()
}
}

impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<
Expand Down

0 comments on commit f878812

Please sign in to comment.