diff --git a/pytonlib/utils/address.py b/pytonlib/utils/address.py index 05be24d..40cd5fb 100644 --- a/pytonlib/utils/address.py +++ b/pytonlib/utils/address.py @@ -100,7 +100,7 @@ def read_friendly_address(address): def detect_address(unknown_form): if is_hex(unknown_form): - return account_forms("-1:"+unknown_form) + return account_forms("0:"+unknown_form) elif (":" in unknown_form) and is_int(unknown_form.split(":")[0]) and is_hex(unknown_form.split(":")[1]): return account_forms(unknown_form) else: