Skip to content

Commit d25de28

Browse files
authored
Merge pull request #469 from opentensor/release/9.4.4
Release/9.4.4
2 parents b4646d8 + 39260c0 commit d25de28

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 9.4.4 /2025-04-29
4+
5+
## What's Changed
6+
* Replace `transfer_allow_death` with `transfer_keep_alive` by @basfroman in https://github.com/opentensor/btcli/pull/466
7+
8+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.4.3...v9.4.4
9+
310
## 9.4.3 /2025-04-29
411

512
## What's Changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div align="center">
22

33
# Bittensor CLI <!-- omit in toc -->
4-
### Rao Development Version
54
[![Discord Chat](https://img.shields.io/discord/308323056592486420.svg)](https://discord.gg/bittensor)
65
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
76
[![PyPI version](https://badge.fury.io/py/bittensor_cli.svg)](https://badge.fury.io/py/bittensor_cli)

bittensor_cli/src/bittensor/extrinsics/transfer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async def get_transfer_fee() -> Balance:
5757
"""
5858
call = await subtensor.substrate.compose_call(
5959
call_module="Balances",
60-
call_function="transfer_allow_death",
60+
call_function="transfer_keep_alive",
6161
call_params={"dest": destination, "value": amount.rao},
6262
)
6363

@@ -82,7 +82,7 @@ async def do_transfer() -> tuple[bool, str, str]:
8282
"""
8383
call = await subtensor.substrate.compose_call(
8484
call_module="Balances",
85-
call_function="transfer_allow_death",
85+
call_function="transfer_keep_alive",
8686
call_params={"dest": destination, "value": amount.rao},
8787
)
8888
extrinsic = await subtensor.substrate.create_signed_extrinsic(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bittensor-cli"
7-
version = "9.4.3"
7+
version = "9.4.4"
88
description = "Bittensor CLI"
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)