mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-24 21:47:56 +00:00
Fix inconsistent head_data (#18)
* fix * Update consensus/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
@@ -96,10 +96,9 @@ pub fn follow_polkadot<'a, L: 'a, P: 'a>(para_id: ParaId, local: Arc<L>, polkado
|
||||
|
||||
finalized_heads
|
||||
.map(|head_data| {
|
||||
<Option<<L::Block as BlockT>::Header>>::decode(&mut &head_data[..])
|
||||
<<L::Block as BlockT>::Header>::decode(&mut &head_data[..])
|
||||
.map_err(|_| Error::InvalidHeadData)
|
||||
})
|
||||
.try_filter_map(|h| future::ready(Ok(h)))
|
||||
.try_for_each(move |p_head| {
|
||||
future::ready(local.finalize(p_head.hash()).map_err(Error::Client).map(|_| ()))
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user