Skip to content

Commit

Permalink
Release v6.2.0 (#1125)
Browse files Browse the repository at this point in the history
* Release `v6.2.0`

* Increase authority slots
  • Loading branch information
AurevoirXavier authored Apr 26, 2023
1 parent 474a67c commit 904babc
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 31 deletions.
42 changes: 21 additions & 21 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2021"
homepage = "https://darwinia.network"
license = "GPL-3.0"
repository = "https://github.com/darwinia-network/darwinia"
version = "6.1.0"
version = "6.2.0"

[workspace.dependencies]
# crates.io
Expand Down
2 changes: 1 addition & 1 deletion runtime/crab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Crab2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_1_0_0,
spec_version: 6_2_0_0,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/crab/src/pallets/ecdsa_authority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static_assertions::const_assert!(MAX_PENDING_PERIOD > SYNC_INTERVAL);

impl darwinia_ecdsa_authority::Config for Runtime {
type ChainId = <Self as pallet_evm::Config>::ChainId;
type MaxAuthorities = ConstU32<3>;
type MaxAuthorities = ConstU32<7>;
type MaxPendingPeriod = ConstU32<MAX_PENDING_PERIOD>;
type MessageRoot = darwinia_message_gadget::MessageRootGetter<Self>;
type RuntimeEvent = RuntimeEvent;
Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Darwinia2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_1_0_0,
spec_version: 6_2_0_0,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/src/pallets/ecdsa_authority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static_assertions::const_assert!(MAX_PENDING_PERIOD > SYNC_INTERVAL);

impl darwinia_ecdsa_authority::Config for Runtime {
type ChainId = <Self as pallet_evm::Config>::ChainId;
type MaxAuthorities = ConstU32<3>;
type MaxAuthorities = ConstU32<7>;
type MaxPendingPeriod = ConstU32<MAX_PENDING_PERIOD>;
type MessageRoot = darwinia_message_gadget::MessageRootGetter<Self>;
type RuntimeEvent = RuntimeEvent;
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangolin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Pangolin2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_1_0_0,
spec_version: 6_2_0_0,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangolin/src/pallets/ecdsa_authority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static_assertions::const_assert!(MAX_PENDING_PERIOD > SYNC_INTERVAL);

impl darwinia_ecdsa_authority::Config for Runtime {
type ChainId = <Self as pallet_evm::Config>::ChainId;
type MaxAuthorities = ConstU32<3>;
type MaxAuthorities = ConstU32<7>;
type MaxPendingPeriod = ConstU32<MAX_PENDING_PERIOD>;
type MessageRoot = darwinia_message_gadget::MessageRootGetter<Self>;
type RuntimeEvent = RuntimeEvent;
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangoro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Pangoro2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_1_0_0,
spec_version: 6_2_0_0,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangoro/src/pallets/ecdsa_authority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static_assertions::const_assert!(MAX_PENDING_PERIOD > SYNC_INTERVAL);

impl darwinia_ecdsa_authority::Config for Runtime {
type ChainId = <Self as pallet_evm::Config>::ChainId;
type MaxAuthorities = ConstU32<3>;
type MaxAuthorities = ConstU32<7>;
type MaxPendingPeriod = ConstU32<MAX_PENDING_PERIOD>;
type MessageRoot = darwinia_message_gadget::MessageRootGetter<Self>;
type RuntimeEvent = RuntimeEvent;
Expand Down
2 changes: 1 addition & 1 deletion tool/state-processor/Cargo.lock

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

0 comments on commit 904babc

Please sign in to comment.