File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -678,7 +678,6 @@ async def burned_register_extrinsic(
678
678
wait_for_inclusion : bool = True ,
679
679
wait_for_finalization : bool = True ,
680
680
era : Optional [int ] = None ,
681
- prompt : bool = False ,
682
681
) -> tuple [bool , str ]:
683
682
"""Registers the wallet to chain by recycling TAO.
684
683
Original file line number Diff line number Diff line change @@ -290,7 +290,6 @@ async def root_register_extrinsic(
290
290
wallet : Wallet ,
291
291
wait_for_inclusion : bool = True ,
292
292
wait_for_finalization : bool = True ,
293
- prompt : bool = False ,
294
293
) -> tuple [bool , str ]:
295
294
r"""Registers the wallet to root network.
296
295
Original file line number Diff line number Diff line change @@ -1656,15 +1656,12 @@ async def register(
1656
1656
return
1657
1657
1658
1658
if netuid == 0 :
1659
- success , msg = await root_register_extrinsic (
1660
- subtensor , wallet = wallet , prompt = prompt
1661
- )
1659
+ success , msg = await root_register_extrinsic (subtensor , wallet = wallet )
1662
1660
else :
1663
1661
success , msg = await burned_register_extrinsic (
1664
1662
subtensor ,
1665
1663
wallet = wallet ,
1666
1664
netuid = netuid ,
1667
- prompt = prompt ,
1668
1665
old_balance = balance ,
1669
1666
era = era ,
1670
1667
)
You can’t perform that action at this time.
0 commit comments