remove debug print

This commit is contained in:
chirag-parmar 2024-10-31 21:02:57 +05:30
parent 8c7a64d6ad
commit 329eb68657
1 changed files with 1 additions and 1 deletions

View File

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