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

fix cargo check -p polkadot-node-core-provisioner --all-features #5942

Merged
merged 1 commit into from
Aug 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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