From 329eb686579cef22d5ff929e32a54b761015d2a1 Mon Sep 17 00:00:00 2001 From: chirag-parmar Date: Thu, 31 Oct 2024 21:02:57 +0530 Subject: [PATCH] remove debug print --- eth/rlp/writer.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/rlp/writer.nim b/eth/rlp/writer.nim index 46951a5..56362c2 100644 --- a/eth/rlp/writer.nim +++ b/eth/rlp/writer.nim @@ -269,7 +269,7 @@ proc initRlpList*(listSize: int): RlpWriter = # TODO: This should return a lent value template finish*(self: RlpWriter): seq[byte] = - doAssert self.pendingLists.len == 0, "Insufficient number of elements written to a started list" & $(self.pendingLists.len) + doAssert self.pendingLists.len == 0, "Insufficient number of elements written to a started list" self.output func clear*(w: var RlpWriter) =