From f49801e94c174c17b60a66614777d9d513e94c78 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Tue, 15 Feb 2022 01:08:43 +0100 Subject: [PATCH] fixup: fix imports in test_discoveryv5_encoding Note that the test does not compile, but it was also not compiling before Signed-off-by: Csaba Kiraly --- tests/p2p/test_discoveryv5_encoding.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/p2p/test_discoveryv5_encoding.nim b/tests/p2p/test_discoveryv5_encoding.nim index 4ab089e..796d5d8 100644 --- a/tests/p2p/test_discoveryv5_encoding.nim +++ b/tests/p2p/test_discoveryv5_encoding.nim @@ -4,8 +4,8 @@ import std/[options, sequtils, tables], unittest2, stint, stew/byteutils, stew/shims/net, - ../../eth/keys, - ../../eth/p2p/discoveryv5/[messages, encoding, enr, node, sessions] + ../../eth/[keys,rlp], + ../../eth/p2p/discoveryv5/[messages, messages_encoding, encoding, enr, node, sessions] let rng = newRng()