mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
Give names to channels (#5626)
* Give names to channels * Fix * A couple more changes * More minor tweaks * Fix test
This commit is contained in:
@@ -176,7 +176,7 @@ macro_rules! new_full {
|
||||
service.spawn_essential_task("babe-proposer", babe);
|
||||
|
||||
let network = service.network();
|
||||
let dht_event_stream = network.event_stream().filter_map(|e| async move { match e {
|
||||
let dht_event_stream = network.event_stream("authority-discovery").filter_map(|e| async move { match e {
|
||||
Event::Dht(e) => Some(e),
|
||||
_ => None,
|
||||
}}).boxed();
|
||||
|
||||
Reference in New Issue
Block a user