File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
bittensor/core/extrinsics Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ def add_stake_multiple_extrinsic(
233
233
total_staking_rao = sum (
234
234
[amount .rao if amount is not None else 0 for amount in new_amounts ]
235
235
)
236
- old_balance = inital_balance = subtensor .get_balance (
236
+ old_balance = initial_balance = subtensor .get_balance (
237
237
wallet .coldkeypub .ss58_address , block = block
238
238
)
239
239
if total_staking_rao == 0 :
@@ -365,7 +365,7 @@ def add_stake_multiple_extrinsic(
365
365
)
366
366
new_balance = subtensor .get_balance (wallet .coldkeypub .ss58_address )
367
367
logging .info (
368
- f"Balance: [blue]{ inital_balance } [/blue] :arrow_right: [green]{ new_balance } [/green]"
368
+ f"Balance: [blue]{ initial_balance } [/blue] :arrow_right: [green]{ new_balance } [/green]"
369
369
)
370
370
return True
371
371
You can’t perform that action at this time.
0 commit comments