Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions bittensor/core/extrinsics/asyncex/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,16 +397,6 @@ async def kill_pure_proxy_extrinsic(

proxy_type_str = ProxyType.normalize(proxy_type)

# Validate that spawner matches wallet
if wallet.coldkey.ss58_address != spawner:
error_msg = (
f"Spawner address {spawner} does not match wallet address "
f"{wallet.coldkey.ss58_address}"
)
if raise_error:
raise ValueError(error_msg)
return ExtrinsicResponse(False, error_msg)

logging.debug(
f"Killing pure proxy: pure=[blue]{pure_proxy_ss58}[/blue], "
f"spawner=[blue]{spawner}[/blue], type=[blue]{proxy_type_str}[/blue], "
Expand Down
10 changes: 0 additions & 10 deletions bittensor/core/extrinsics/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,16 +396,6 @@ def kill_pure_proxy_extrinsic(

proxy_type_str = ProxyType.normalize(proxy_type)

# Validate that spawner matches wallet
if wallet.coldkey.ss58_address != spawner:
error_msg = (
f"Spawner address {spawner} does not match wallet address "
f"{wallet.coldkey.ss58_address}"
)
if raise_error:
raise ValueError(error_msg)
return ExtrinsicResponse(False, error_msg)

logging.debug(
f"Killing pure proxy: pure=[blue]{pure_proxy_ss58}[/blue], "
f"spawner=[blue]{spawner}[/blue], type=[blue]{proxy_type_str}[/blue], "
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"uvicorn",
"bittensor-drand>=1.0.0,<2.0.0",
"bittensor-wallet>=4.0.0,<5.0",
"async-substrate-interface==1.5.9"
"async-substrate-interface>=1.5.12"
]

[project.optional-dependencies]
Expand Down
Loading
Loading