From f6774b636a93755b25775e8cef358d472405e9e3 Mon Sep 17 00:00:00 2001 From: jangko Date: Thu, 30 Jul 2020 15:24:22 +0700 Subject: [PATCH] fix premix/parser --- premix/parser.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/premix/parser.nim b/premix/parser.nim index 7238187ff..75522fb99 100644 --- a/premix/parser.nim +++ b/premix/parser.nim @@ -3,8 +3,8 @@ import eth/[rlp, common], httputils, nimcrypto, chronicles, stint, stew/byteutils -import - ../nimbus/[transaction, rpc/hexstrings] +import ../nimbus/transaction +from ../nimbus/rpc/hexstrings import encodeQuantity func hexToInt*(s: string, T: typedesc[SomeInteger]): T = var i = 0