Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Commit

Permalink
Add header argument to collect_collation_info
Browse files Browse the repository at this point in the history
  • Loading branch information
HCastano committed Jan 3, 2022
1 parent 60b8198 commit 5df0689
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -787,8 +787,8 @@ impl_runtime_apis! {
}

impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {
fn collect_collation_info() -> cumulus_primitives_core::CollationInfo {
ParachainSystem::collect_collation_info()
fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {
ParachainSystem::collect_collation_info(header)
}
}

Expand Down

0 comments on commit 5df0689

Please sign in to comment.