Skip to content

Commit 8f0437c

Browse files
committed
Merge conflict
1 parent b4222f9 commit 8f0437c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bittensor_cli/src/commands/stake/remove.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ async def unstake(
287287
"subtensor": subtensor,
288288
"netuid": op["netuid"],
289289
"amount": op["amount_to_unstake"],
290-
# TODO verify current_stake used in both
291290
"hotkey_ss58": op["hotkey_ss58"],
292291
"status": status,
293292
}
@@ -300,7 +299,9 @@ async def unstake(
300299
}
301300
else:
302301
func = _unstake_extrinsic
303-
specific_args = {}
302+
specific_args = {
303+
"current_stake": op["current_stake_balance"]
304+
}
304305

305306
suc = await func(**common_args, **specific_args)
306307

0 commit comments

Comments
 (0)