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.
This commit is contained in:
Age Manning 2020-08-02 13:19:56 +00:00
parent 3ea01ac26b
commit 3b5da8f35f

View File

@ -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"]