From efe7723d857b17a0187a0deed8286c8b246eb6b8 Mon Sep 17 00:00:00 2001 From: 0xrust Date: Wed, 28 Sep 2022 12:29:17 +0300 Subject: [PATCH] quick fix - set burn percent to 0 --- Cargo.lock | 8 ++++---- node/Cargo.toml | 2 +- runtime/arctic/Cargo.toml | 2 +- runtime/arctic/src/lib.rs | 2 +- runtime/frost/Cargo.toml | 2 +- runtime/frost/src/lib.rs | 2 +- runtime/snow/Cargo.toml | 2 +- runtime/snow/src/lib.rs | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6746cbb0..08840872 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -123,7 +123,7 @@ dependencies = [ [[package]] name = "arctic-runtime" -version = "0.4.54" +version = "0.4.55" dependencies = [ "bstringify", "cumulus-pallet-aura-ext", @@ -3098,7 +3098,7 @@ dependencies = [ [[package]] name = "frost-runtime" -version = "0.4.54" +version = "0.4.55" dependencies = [ "fp-rpc", "fp-self-contained", @@ -3691,7 +3691,7 @@ dependencies = [ [[package]] name = "ice-node" -version = "0.4.54" +version = "0.4.55" dependencies = [ "arctic-runtime", "async-trait", @@ -11048,7 +11048,7 @@ dependencies = [ [[package]] name = "snow-runtime" -version = "0.4.54" +version = "0.4.55" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", diff --git a/node/Cargo.toml b/node/Cargo.toml index c918ceca..e3436064 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -7,7 +7,7 @@ homepage = 'https://substrate.dev' license = 'Apache-2.0' name = 'ice-node' repository = 'https://github.com/web3labs/ice-substrate' -version = '0.4.54' +version = '0.4.55' publish = false [package.metadata.docs.rs] diff --git a/runtime/arctic/Cargo.toml b/runtime/arctic/Cargo.toml index f63bc83a..c2036d55 100644 --- a/runtime/arctic/Cargo.toml +++ b/runtime/arctic/Cargo.toml @@ -7,7 +7,7 @@ homepage = 'https://substrate.dev' license = 'Apache-2.0' name = 'arctic-runtime' repository = 'https://github.com/web3labs/ice-substrate/' -version = '0.4.54' +version = '0.4.55' publish = false [package.metadata.docs.rs] diff --git a/runtime/arctic/src/lib.rs b/runtime/arctic/src/lib.rs index 2fa7add7..da18d378 100644 --- a/runtime/arctic/src/lib.rs +++ b/runtime/arctic/src/lib.rs @@ -623,7 +623,7 @@ parameter_types! { pub const ProposalBond: Permill = Permill::from_percent(5); pub const ProposalBondMinimum: Balance = 10 * currency::DOLLARS; pub const SpendPeriod: BlockNumber = DAYS; - pub const Burn: Permill = Permill::from_percent(1); + pub const Burn: Permill = Permill::from_percent(0); pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry"); pub const MaxApprovals: u32 = 100; diff --git a/runtime/frost/Cargo.toml b/runtime/frost/Cargo.toml index 8de2a9a1..9751c29b 100644 --- a/runtime/frost/Cargo.toml +++ b/runtime/frost/Cargo.toml @@ -7,7 +7,7 @@ homepage = 'https://substrate.dev' license = 'Apache-2.0' name = 'frost-runtime' repository = 'https://github.com/web3labs/ice-substrate/' -version = '0.4.54' +version = '0.4.55' publish = false [package.metadata.docs.rs] diff --git a/runtime/frost/src/lib.rs b/runtime/frost/src/lib.rs index 72b6f226..b80cfb00 100644 --- a/runtime/frost/src/lib.rs +++ b/runtime/frost/src/lib.rs @@ -527,7 +527,7 @@ parameter_types! { pub const ProposalBond: Permill = Permill::from_percent(5); pub const ProposalBondMinimum: Balance = 10 * currency::DOLLARS; pub const SpendPeriod: BlockNumber = DAYS; - pub const Burn: Permill = Permill::from_percent(1); + pub const Burn: Permill = Permill::from_percent(0); pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry"); pub const MaxApprovals: u32 = 100; diff --git a/runtime/snow/Cargo.toml b/runtime/snow/Cargo.toml index 3499aaed..8c6d6092 100644 --- a/runtime/snow/Cargo.toml +++ b/runtime/snow/Cargo.toml @@ -7,7 +7,7 @@ homepage = 'https://substrate.dev' license = 'Apache-2.0' name = 'snow-runtime' repository = 'https://github.com/web3labs/ice-substrate/' -version = '0.4.54' +version = '0.4.55' publish = false [package.metadata.docs.rs] diff --git a/runtime/snow/src/lib.rs b/runtime/snow/src/lib.rs index 82ba47b6..0347f433 100644 --- a/runtime/snow/src/lib.rs +++ b/runtime/snow/src/lib.rs @@ -604,7 +604,7 @@ parameter_types! { pub const ProposalBond: Permill = Permill::from_percent(5); pub const ProposalBondMinimum: Balance = 10 * currency::DOLLARS; pub const SpendPeriod: BlockNumber = DAYS; - pub const Burn: Permill = Permill::from_percent(1); + pub const Burn: Permill = Permill::from_percent(0); pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry"); pub const MaxApprovals: u32 = 100;