We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 683e7a6 commit c372f29Copy full SHA for c372f29
src/content/developers/docs/data-structures-and-encoding/rlp/index.md
@@ -113,7 +113,7 @@ def rlp_decode(input):
113
output = instantiate_str(substr(input, offset, dataLen))
114
elif type is list:
115
output = instantiate_list(substr(input, offset, dataLen))
116
- output + rlp_decode(substr(input, offset + dataLen))
+ output += rlp_decode(substr(input, offset + dataLen))
117
return output
118
119
def decode_length(input):
0 commit comments