Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cumulus/polkadot-omni-node/lib/src/nodes/aura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ where
let spawner = task_manager.spawn_essential_handle();

let relay_chain_verifier =
Box::new(RelayChainVerifier::new(client.clone(), |_, _| async { Ok(()) }));
Box::new(RelayChainVerifier::new(client.clone(), inherent_data_providers));

let equivocation_aura_verifier =
EquivocationVerifier::<<AuraId as AppCrypto>::Pair, _, _, _>::new(
Expand Down
12 changes: 12 additions & 0 deletions prdoc/pr_9102.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
title: '`polkadot-omni-node`: pass timestamp inherent data for block import'
doc:
- audience: [ Runtime Dev, Node Dev ]
description: |-
This should allow aura runtimes to check timestamp inherent data when syncing/importing blocks
that include timestamp inherent data.

Runtime developers can check timestamp inherent data while using `polkadot-omni-node-lib`/`polkadot-omni-node`/`polkadot-parachain` binaries.
This change is backwards compatible and doesn't require runtimes to check the timestamp inherent, but they are able to do it now if needed.
crates:
- name: polkadot-omni-node-lib
bump: minor
Loading