Skip to content

Commit e61f70b

Browse files
authored
Merge pull request #357 from opentensor/transaction_fee_increase
Increase base transaction fee to 0.00012 TAO
2 parents 09e0270 + be458dc commit e61f70b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
121121
// `spec_version`, and `authoring_version` are the same between Wasm and native.
122122
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
123123
// the compatible custom types.
124-
spec_version: 144,
124+
spec_version: 145,
125125
impl_version: 1,
126126
apis: RUNTIME_API_VERSIONS,
127127
transaction_version: 1,
@@ -295,7 +295,7 @@ where
295295
fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {
296296
let coefficient = WeightToFeeCoefficient {
297297
coeff_integer: 0,
298-
coeff_frac: Perbill::from_parts(1),
298+
coeff_frac: Perbill::from_parts(1_000_000),
299299
negative: false,
300300
degree: 1,
301301
};

0 commit comments

Comments
 (0)