Skip to content

Commit

Permalink
Merge pull request #164 from web3labs/fix-burn-percent
Browse files Browse the repository at this point in the history
urgent fix - set burn percent to 0
  • Loading branch information
mohamedelshami authored Oct 4, 2022
2 parents 4e851d6 + efe7723 commit 654cce3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion runtime/arctic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion runtime/arctic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion runtime/frost/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion runtime/frost/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion runtime/snow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion runtime/snow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 654cce3

Please sign in to comment.