Skip to content

Commit d1e657a

Browse files
committed
Wrong var used.
1 parent b4e6630 commit d1e657a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

async_substrate_interface/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ def _encode_scale(self, type_string, value: Any) -> bytes:
743743
result += account # Already encoded
744744
else:
745745
result += bytes.fromhex(
746-
ss58_decode(value, SS58_FORMAT)
746+
ss58_decode(account, SS58_FORMAT)
747747
) # SS58 string
748748
return result
749749

0 commit comments

Comments
 (0)