We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2b9a8 commit 9e4ce58Copy full SHA for 9e4ce58
bittensor/core/extrinsics/asyncex/move_stake.py
@@ -290,14 +290,6 @@ async def move_stake_extrinsic(
290
bool: True if the move was successful, False otherwise.
291
"""
292
amount.set_unit(netuid=origin_netuid)
293
- # Verify ownership of origin hotkey
294
- origin_owner = await subtensor.get_hotkey_owner(origin_hotkey)
295
- if origin_owner != wallet.coldkeypub.ss58_address:
296
- logging.error(
297
- f":cross_mark: [red]Failed[/red]: Origin hotkey: {origin_hotkey} does not belong to the coldkey owner: "
298
- f"{wallet.coldkeypub.ss58_address}"
299
- )
300
- return False
301
302
# Check sufficient stake
303
stake_in_origin, stake_in_destination = await _get_stake_in_origin_and_dest(
0 commit comments