Skip to content

Commit

Permalink
fix DebugRuntimeApi
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Mar 15, 2024
1 parent cddf812 commit 3103f97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tracing/shared/primitives/rpc/debug/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ sp_api::decl_runtime_apis! {
fn trace_transaction(
extrinsics: Vec<Block::Extrinsic>,
transaction: &Transaction,
transaction: &Block::Header,
header: &Block::Header,
) -> Result<(), sp_runtime::DispatchError>;

fn trace_block(
extrinsics: Vec<Block::Extrinsic>,
known_transactions: Vec<H256>,
transaction: &Block::Header,
header: &Block::Header,
) -> Result<(), sp_runtime::DispatchError>;
}
}
Expand Down

0 comments on commit 3103f97

Please sign in to comment.