Skip to content
Snippets Groups Projects
Commit 138aae0a authored by ordian's avatar ordian Committed by GitHub
Browse files

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

parent 13ea167b
Branches
No related merge requests found
......@@ -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");
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment