Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fix cargo check -p polkadot-node-core-provisioner --all-features (#5942)
Browse files Browse the repository at this point in the history
  • Loading branch information
ordian authored Aug 30, 2022
1 parent 270fb1e commit 6573248
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/core/provisioner/src/onchain_disputes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ mod staging_impl {
};

/// Gets the on-chain disputes at a given block number and returns them as a `HashSet` so that searching in them is cheap.
pub async fn get_onchain_disputes<Sender>(
sender: &mut Sender,
pub async fn get_onchain_disputes(
sender: &mut impl SubsystemSender<RuntimeApiMessage>,
relay_parent: Hash,
) -> Result<HashMap<(SessionIndex, CandidateHash), DisputeState>, GetOnchainDisputesError> {
gum::trace!(target: LOG_TARGET, ?relay_parent, "Fetching on-chain disputes");
Expand Down

0 comments on commit 6573248

Please sign in to comment.