mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 17:31:05 +00:00
* Use blank task group name Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * cargo fmt Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * Update Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * update Cargo.lock and switch from 0.9.12 to master * format with LATEST nightly Co-authored-by: Andronik Ordian <write@reusable.software>
This commit is contained in:
@@ -237,7 +237,9 @@ where
|
||||
self.announce_block,
|
||||
);
|
||||
|
||||
self.task_manager.spawn_essential_handle().spawn("cumulus-consensus", consensus);
|
||||
self.task_manager
|
||||
.spawn_essential_handle()
|
||||
.spawn("cumulus-consensus", None, consensus);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -281,9 +283,11 @@ where
|
||||
self.para_id,
|
||||
);
|
||||
|
||||
self.task_manager
|
||||
.spawn_essential_handle()
|
||||
.spawn("cumulus-pov-recovery", pov_recovery.run());
|
||||
self.task_manager.spawn_essential_handle().spawn(
|
||||
"cumulus-pov-recovery",
|
||||
None,
|
||||
pov_recovery.run(),
|
||||
);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user