Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-parmar committed Oct 31, 2024
1 parent 3d3082c commit 6a54710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/rlp/writer.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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) =
Expand Down

0 comments on commit 6a54710

Please sign in to comment.