From ca1857b4736a6e49eb4265cc36ae322f41bdc8a9 Mon Sep 17 00:00:00 2001 From: akshaya Date: Fri, 3 Jul 2026 08:48:56 -0400 Subject: [PATCH] =?UTF-8?q?test:=20rename=20DefaultMaxConnections=20?= =?UTF-8?q?=E2=86=92=20MaxConnections=20+=20fix=20rln=5Fgifter=20import=20?= =?UTF-8?q?paths?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/testlib/wakunode.nim | 3 ++- tests/waku_rln_relay/test_rln_gifter.nim | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) 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())