diff --git a/tests/testlib/wakunode.nim b/tests/testlib/wakunode.nim index 7bdb34a71..65b165a08 100644 --- a/tests/testlib/wakunode.nim +++ b/tests/testlib/wakunode.nim @@ -12,6 +12,7 @@ import waku_node, net/net_config, waku_core/topics, + node/waku_switch, node/peer_manager, waku_enr, discovery/waku_discv5, @@ -56,7 +57,7 @@ proc newTestWakuNode*( extPort = none(Port), extMultiAddrs = newSeq[MultiAddress](), peerStorage: PeerStorage = nil, - maxConnections = DefaultMaxConnections, + maxConnections = MaxConnections, wsBindPort: Port = (Port) 8000, wsEnabled: bool = false, wssEnabled: bool = false, diff --git a/tests/waku_rln_relay/test_rln_gifter.nim b/tests/waku_rln_relay/test_rln_gifter.nim index 40521b941..c43c01478 100644 --- a/tests/waku_rln_relay/test_rln_gifter.nim +++ b/tests/waku_rln_relay/test_rln_gifter.nim @@ -3,9 +3,9 @@ import std/options, results import testutils/unittests import eth/common/[addresses, keys] -import waku/waku_rln_relay/rln_gifter/rpc -import waku/waku_rln_relay/rln_gifter/rpc_codec -import waku/waku_rln_relay/rln_gifter/protocol as rln_gifter_protocol +import logos_delivery/waku/waku_rln_relay/rln_gifter/rpc +import logos_delivery/waku/waku_rln_relay/rln_gifter/rpc_codec +import logos_delivery/waku/waku_rln_relay/rln_gifter/protocol as rln_gifter_protocol proc eip191Sign(seckey: PrivateKey, idCommitment: openArray[byte]): seq[byte] = @(seckey.sign(eip191Message(idCommitment)).toRaw())