Skip to content

Commit 1d9714c

Browse files
committed
fix(bmc:library): sn type fix in RLP_decode_struct.py
1 parent 78c57c2 commit 1d9714c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smartpy/bmc/contracts/src/RLP_decode_struct.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def decode_bmc_message(self, rlp):
3232
return sp.record(src=temp_map_string.get("src"),
3333
dst=temp_map_string.get("dst"),
3434
svc=temp_map_string.get("svc"),
35-
sn=sp.to_int(temp_int.value),
35+
sn=temp_int.value,
3636
message=temp_byt.value)
3737

3838

0 commit comments

Comments
 (0)