From 44bc6a9e9cba7081d042d5ff33f7a00dd66d9c38 Mon Sep 17 00:00:00 2001 From: open-junius Date: Mon, 8 Sep 2025 23:30:20 +0800 Subject: [PATCH 1/2] set default ck burn as zero --- pallets/subtensor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/subtensor/src/lib.rs b/pallets/subtensor/src/lib.rs index ba8a8b0370..dff52d6b55 100644 --- a/pallets/subtensor/src/lib.rs +++ b/pallets/subtensor/src/lib.rs @@ -866,7 +866,7 @@ pub mod pallet { #[pallet::type_value] /// Default value for ck burn, 18%. pub fn DefaultCKBurn() -> u64 { - u64::MAX / 100 * 18 + 0 } #[pallet::storage] From e8ec65978d6a84dede3533cb2d1518b3167acdc0 Mon Sep 17 00:00:00 2001 From: open-junius Date: Mon, 8 Sep 2025 23:32:13 +0800 Subject: [PATCH 2/2] bump version --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index a25f23482b..39dad74c09 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -220,7 +220,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 311, + spec_version: 312, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,