Skip to content

Commit e31043f

Browse files
authored
Merge pull request #15303 from dlm/patch-2
Fix typo in python example code
2 parents 90147c7 + abb3223 commit e31043f

File tree

1 file changed

+1
-1
lines changed
  • public/content/developers/docs/data-structures-and-encoding/rlp

1 file changed

+1
-1
lines changed

public/content/developers/docs/data-structures-and-encoding/rlp/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def encode_length(L, offset):
6262
elif L < 256**8:
6363
BL = to_binary(L)
6464
return chr(len(BL) + offset + 55) + BL
65-
raise Exception("input too long")
65+
raise Exception("input too long")
6666

6767
def to_binary(x):
6868
if x == 0:

0 commit comments

Comments
 (0)