Skip to content

Commit c5e0161

Browse files
authored
Merge pull request #2168 from opentensor/disable-root-claim-fees
Disable root claim fees.
2 parents b5cfad3 + e4da052 commit c5e0161

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pallets/subtensor/src/staking/claim_root.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ impl<T: Config> Pallet<T> {
165165
netuid,
166166
owed_u64.into(),
167167
T::SwapInterface::min_price::<TaoCurrency>(),
168-
false,
168+
true,
169169
) {
170170
Ok(owed_tao) => owed_tao,
171171
Err(err) => {

runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
220220
// `spec_version`, and `authoring_version` are the same between Wasm and native.
221221
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
222222
// the compatible custom types.
223-
spec_version: 333,
223+
spec_version: 334,
224224
impl_version: 1,
225225
apis: RUNTIME_API_VERSIONS,
226226
transaction_version: 1,

0 commit comments

Comments
 (0)