mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-15 00:55:44 +00:00
Fix on demand parachains relay when no parachain head at target (#1834)
* `best_finalized_peer_at_best_self` in messages relay is now Option<> - before it was an error, which effectively blocked the lane * unnecessary mut * clone on return
This commit is contained in:
committed by
Bastian Köcher
parent
947a0a695b
commit
f0c4073dc6
@@ -102,7 +102,8 @@ where
|
||||
None,
|
||||
)
|
||||
.await?
|
||||
.best_finalized_peer_at_best_self)
|
||||
.best_finalized_peer_at_best_self
|
||||
.ok_or(Error::BridgePalletIsNotInitialized)?)
|
||||
}
|
||||
|
||||
async fn submit_finality_proof(
|
||||
|
||||
Reference in New Issue
Block a user