Merge pull request #385 from florianlenz/fix/multiplex

[muxer] set mplex version to 6.7.0
This commit is contained in:
Steven Allen 2018-07-30 20:19:13 +00:00 committed by GitHub
commit 77b7d8f06f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ var DefaultSecurity = Security(secio.ID, secio.New)
// libp2p instead of replacing them. // libp2p instead of replacing them.
var DefaultMuxers = ChainOptions( var DefaultMuxers = ChainOptions(
Muxer("/yamux/1.0.0", yamux.DefaultTransport), Muxer("/yamux/1.0.0", yamux.DefaultTransport),
Muxer("/mplex/6.3.0", mplex.DefaultTransport), Muxer("/mplex/6.7.0", mplex.DefaultTransport),
) )
// DefaultTransports are the default libp2p transports. // DefaultTransports are the default libp2p transports.