Skip to content
Snippets Groups Projects
Commit 2cddcfe1 authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Companion for Substrate#8588 (#2883)

* Companion for Substrate#8588

https://github.com/paritytech/substrate/pull/8588

* update Substrate

Co-authored-by: parity-processbot <>
parent fee9e3ec
No related merge requests found
This diff is collapsed.
......@@ -205,6 +205,7 @@ where
mut inherent_data: InherentData,
inherent_digests: DigestFor<Block>,
max_duration: time::Duration,
block_size_limit: Option<usize>,
) -> Self::Proposal {
async move {
let span = jaeger::Span::new(self.parent_header_hash, "propose");
......@@ -237,7 +238,7 @@ where
let _span = span.child("authorship-propose");
self.inner
.propose(inherent_data, inherent_digests, max_duration)
.propose(inherent_data, inherent_digests, max_duration, block_size_limit)
.await
.map_err(Into::into)
}
......
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