Skip to content

Commit 7ee3e89

Browse files
committed
TAO -> RAO
1 parent 013fa47 commit 7ee3e89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pallets/subtensor/src/migrations/migrate_rao.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ pub fn migrate_rao<T: Config>() -> Weight {
7373
let lock: u64 = SubnetLocked::<T>::get(netuid);
7474

7575
// Put initial TAO from lock into subnet TAO and produce numerically equal amount of Alpha
76-
// The initial TAO is the locked amount, with a minimum of 1 TAO and a cap of 100 TAO.
76+
// The initial TAO is the locked amount, with a minimum of 1 RAO and a cap of 100 TAO.
7777
let pool_initial_tao = 100_000_000_000.min(lock.max(1));
7878

7979
let remaining_lock = lock.saturating_sub(pool_initial_tao);

pallets/subtensor/src/subnets/subnet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl<T: Config> Pallet<T> {
234234
); // Set subnet token symbol.
235235

236236
// Put initial TAO from lock into subnet TAO and produce numerically equal amount of Alpha
237-
// The initial TAO is the locked amount, with a minimum of 1 TAO and a cap of 100 TAO.
237+
// The initial TAO is the locked amount, with a minimum of 1 RAO and a cap of 100 TAO.
238238
let pool_initial_tao = 100_000_000_000.min(actual_tao_lock_amount.max(1));
239239

240240
let actual_tao_lock_amount_less_pool_tao =

0 commit comments

Comments
 (0)