Skip to content

Commit

Permalink
Reduce Astar block reward (#819)
Browse files Browse the repository at this point in the history
* Reduce Astar block reward

* Reduce Shibuya block reward
  • Loading branch information
akru authored Jan 9, 2023
1 parent 6f6ac90 commit 5422c87
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/collator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astar-collator"
version = "4.42.0"
version = "4.43.0"
authors = ["Stake Technologies <[email protected]>"]
description = "Astar collator implementation in Rust."
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/astar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astar-runtime"
version = "4.43.0"
version = "4.44.0"
authors = ["Stake Technologies <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions runtime/astar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("astar"),
impl_name: create_runtime_str!("astar"),
authoring_version: 1,
spec_version: 48,
spec_version: 49,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down Expand Up @@ -467,7 +467,7 @@ impl pallet_block_reward::BeneficiaryPayout<NegativeImbalance> for BeneficiaryPa
}

parameter_types! {
pub const RewardAmount: Balance = 266_400 * MILLIASTR;
pub const RewardAmount: Balance = 253_080 * MILLIASTR;
}

impl pallet_block_reward::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtime/local/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "local-runtime"
version = "4.43.0"
version = "4.44.0"
authors = ["Stake Technologies <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion runtime/shibuya/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shibuya-runtime"
version = "4.43.0"
version = "4.44.0"
authors = ["Stake Technologies <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions runtime/shibuya/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("shibuya"),
impl_name: create_runtime_str!("shibuya"),
authoring_version: 1,
spec_version: 86,
spec_version: 87,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down Expand Up @@ -549,7 +549,7 @@ impl pallet_block_reward::BeneficiaryPayout<NegativeImbalance> for BeneficiaryPa
}

parameter_types! {
pub const RewardAmount: Balance = 2_664 * MILLISDN;
pub const RewardAmount: Balance = 2_530 * MILLISDN;
}

impl pallet_block_reward::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtime/shiden/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shiden-runtime"
version = "4.43.0"
version = "4.44.0"
authors = ["Stake Technologies <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down

0 comments on commit 5422c87

Please sign in to comment.