mirror of https://github.com/waku-org/nwaku.git
chore: Partial version bumps for v0.34.0-rc.1 (#3172)
* Bumps for v0.34.0-rc.1 - partial bumping - libp2p * Avoid importing quic and ngtcp2 dependencies through tests * libp2p 1.7.1, fixes RendezVous construction
This commit is contained in:
parent
294dd03c45
commit
8368ff006d
|
@ -1,6 +1,6 @@
|
|||
{.used.}
|
||||
|
||||
import chronos, testutils/unittests, libp2p, libp2p/protocols/rendezvous
|
||||
import chronos, testutils/unittests, libp2p/builders, libp2p/protocols/rendezvous
|
||||
|
||||
import waku/node/waku_switch, ./testlib/common, ./testlib/wakucore
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
import
|
||||
testutils/unittests,
|
||||
chronos,
|
||||
libp2p,
|
||||
libp2p/builders,
|
||||
libp2p/protocols/connectivity/autonat/client,
|
||||
libp2p/protocols/connectivity/relay/relay,
|
||||
libp2p/protocols/connectivity/relay/client,
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 18a2e79ce209d2f21d8c5db7a41659cc39dbe0b4
|
||||
Subproject commit 8855bce0854ecf4adad7a0556bb2b2d2f98e0e20
|
|
@ -1262,7 +1262,11 @@ proc startKeepalive*(node: WakuNode, keepalive = 2.minutes) =
|
|||
proc mountRendezvous*(node: WakuNode) {.async: (raises: []).} =
|
||||
info "mounting rendezvous discovery protocol"
|
||||
|
||||
try:
|
||||
node.rendezvous = RendezVous.new(node.switch)
|
||||
except Exception as e:
|
||||
error "failed to create rendezvous", error = getCurrentExceptionMsg()
|
||||
return
|
||||
|
||||
if node.started:
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue