From 8451ce6c3b76e30df6072fae885d431ad647455c Mon Sep 17 00:00:00 2001 From: kdeme Date: Tue, 20 Aug 2019 12:39:47 +0200 Subject: [PATCH] Add necessary re-exports, fixes #91 --- eth/p2p/rlpx.nim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eth/p2p/rlpx.nim b/eth/p2p/rlpx.nim index 2752b45..b339b9e 100644 --- a/eth/p2p/rlpx.nim +++ b/eth/p2p/rlpx.nim @@ -7,8 +7,11 @@ when useSnappy: import snappy const devp2pSnappyVersion* = 5 +# TODO: chronicles re-export here is added for the error +# "undeclared identifier: 'activeChroniclesStream'", when the code using p2p +# does not import chronicles. Need to resolve this properly. export - options, p2pProtocol + options, p2pProtocol, rlp, chronicles logScope: topics = "rlpx"