feat: prioritise yamux above mplex (#2417)

* update libp2p submodule

* feat: prefer yamux to mplex
This commit is contained in:
Hanno Cornelius 2024-02-17 19:46:01 +00:00 committed by GitHub
parent 29b0c0b8da
commit ce151efc36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
vendor/nim-libp2p vendored

@ -1 +1 @@
Subproject commit e3c967ad1939fb33b8e13759037d193734acd202
Subproject commit e0f70b71778bf9613421261b22a56499c913f806

View File

@ -90,8 +90,8 @@ proc newWakuSwitch*(
.withMaxIn(maxIn)
.withMaxOut(maxOut)
.withMaxConnsPerPeer(maxConnsPerPeer)
.withMplex(inTimeout, outTimeout)
.withYamux()
.withMplex(inTimeout, outTimeout)
.withNoise()
.withTcpTransport(transportFlags)
.withNameResolver(nameResolver)