From 3b5da8f35f1788972a205af3063a1f1448082d75 Mon Sep 17 00:00:00 2001 From: Age Manning Date: Sun, 2 Aug 2020 13:19:56 +0000 Subject: [PATCH] Gossipsub update (#1432) ## Issue Addressed The most recent gossipsub update had an issue where some privacy settings lead to not sending a sequence number with the message. Although Lighthouse treats these as valid (based on current configuration) other clients may not. This corrects gossipsub to send sequence numbers where expected and based on the configuration settings. --- beacon_node/eth2_libp2p/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/eth2_libp2p/Cargo.toml b/beacon_node/eth2_libp2p/Cargo.toml index 3aa156674f..314ade4782 100644 --- a/beacon_node/eth2_libp2p/Cargo.toml +++ b/beacon_node/eth2_libp2p/Cargo.toml @@ -41,7 +41,7 @@ rand = "0.7.3" [dependencies.libp2p] #version = "0.19.1" git = "https://github.com/sigp/rust-libp2p" -rev = "8e9e35994e63716c6eb0a05b9702133d113b3822" +rev = "f1b660a1a96c1b6198cd62062e75d357893faf16" default-features = false features = ["websocket", "identify", "mplex", "yamux", "noise", "gossipsub", "dns", "secio", "tcp-tokio"]