Make Proposer consume its reference on propose (#6190)

* Make `Proposer` consume its reference on `propose`

A proposer must be created per new round, so it makes sense to have the
proposer consume its own reference.

* Remove `ProposerInner`
This commit is contained in:
Bastian Köcher
2020-05-29 18:50:56 +02:00
committed by GitHub
parent 78a72c12d7
commit 841aab512f
8 changed files with 24 additions and 32 deletions
@@ -157,7 +157,7 @@ pub trait Proposer<B: BlockT> {
///
/// Returns a future that resolves to a [`Proposal`] or to [`Error`].
fn propose(
&mut self,
self,
inherent_data: InherentData,
inherent_digests: DigestFor<B>,
max_duration: Duration,