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) =