Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpolaczyk committed Sep 2, 2024
1 parent f276916 commit 1d87f19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cumulus/client/consensus/common/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl RelayChainInterface for Relaychain {
async fn call_runtime_api(
&self,
_method_name: &'static str,
_hash: RelayHash,
_hash: PHash,
_payload: &[u8],
) -> RelayChainResult<Vec<u8>> {
unimplemented!("Not needed for test")
Expand Down
2 changes: 1 addition & 1 deletion cumulus/client/network/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ impl RelayChainInterface for DummyRelayChainInterface {
async fn call_runtime_api(
&self,
_method_name: &'static str,
_hash: RelayHash,
_hash: PHash,
_payload: &[u8],
) -> RelayChainResult<Vec<u8>> {
unimplemented!("Not needed for test")
Expand Down
2 changes: 1 addition & 1 deletion cumulus/client/pov-recovery/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ impl RelayChainInterface for Relaychain {
async fn call_runtime_api(
&self,
_method_name: &'static str,
_hash: RelayHash,
_hash: PHash,
_payload: &[u8],
) -> RelayChainResult<Vec<u8>> {
unimplemented!("Not needed for test")
Expand Down

0 comments on commit 1d87f19

Please sign in to comment.