Skip to content

Commit 54f454d

Browse files
Merge pull request #548 from Cerebellum-Network/release/7.3.2
Update Hyperbridge Coprocessor for Mainnet
2 parents 9f685b3 + f874916 commit 54f454d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- [C] Changes is `Cere` Runtime
1111
- [D] Changes is `Cere Dev` Runtime
1212

13+
## [7.3.2]
14+
15+
- [C] Update Hyperbridge Coprocessor for Mainnet.
16+
1317
## [7.3.1]
1418

1519
- [C,D] To accommodate larger GRANDPA proofs, increased `BlockLength` to 7.5MB with 80% for normal extrinsics.

runtime/cere-dev/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
163163
// and set impl_version to 0. If only runtime
164164
// implementation changes and behavior does not, then leave spec_version as
165165
// is and increment impl_version.
166-
spec_version: 73101,
166+
spec_version: 73102,
167167
impl_version: 0,
168168
apis: RUNTIME_API_VERSIONS,
169169
transaction_version: 24,

runtime/cere/src/hyperbridge_ismp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use super::*;
99

1010
parameter_types! {
1111
// The hyperbridge parachain on Polkadot
12-
pub const Coprocessor: Option<StateMachine> = Some(StateMachine::Kusama(4009));
12+
pub const Coprocessor: Option<StateMachine> = Some(StateMachine::Polkadot(3367));
1313
// The host state machine of this pallet, this must be unique to all every solochain
1414
pub const HostStateMachine: StateMachine = StateMachine::Substrate(*b"cere"); // your unique chain id here
1515
}

runtime/cere/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
158158
// and set impl_version to 0. If only runtime
159159
// implementation changes and behavior does not, then leave spec_version as
160160
// is and increment impl_version.
161-
spec_version: 73101,
161+
spec_version: 73102,
162162
impl_version: 0,
163163
apis: RUNTIME_API_VERSIONS,
164164
transaction_version: 24,

0 commit comments

Comments
 (0)