Skip to content

Commit 73f3afc

Browse files
committed
WIP
1 parent 229a11e commit 73f3afc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/e2e_tests/utils/chain_interactions.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,11 @@ def register_subnet(substrate: "SubstrateInterface", wallet: "Wallet") -> bool:
9898
register_call = substrate.compose_call(
9999
call_module="SubtensorModule",
100100
call_function="register_network",
101-
call_params={"immunity_period": 0, "reg_allowed": True},
101+
call_params={
102+
"immunity_period": 0,
103+
"reg_allowed": True,
104+
"hotkey": wallet.hotkey.ss58_address,
105+
},
102106
)
103107
extrinsic = substrate.create_signed_extrinsic(
104108
call=register_call, keypair=wallet.coldkey

0 commit comments

Comments
 (0)