We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 027a4cf commit 0bb4651Copy full SHA for 0bb4651
p2p/src/behaviour.rs
@@ -47,5 +47,7 @@ fn create_identify_behaviour(
47
) -> identify::Behaviour {
48
use identify::{Behaviour, Config};
49
50
- Behaviour::new(Config::new(protocol_version, local_public_key))
+ Behaviour::new(
51
+ Config::new(protocol_version, local_public_key).with_push_listen_addr_updates(true),
52
+ )
53
}
0 commit comments