Skip to content

Commit 7cb48ee

Browse files
release 4.7.4
1 parent dd87368 commit 7cb48ee

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "framenode"
3-
version = "4.7.3"
3+
version = "4.7.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
build = "build.rs"
66
edition = "2021"

node/chain_spec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "framenode-chain-spec"
3-
version = "4.7.3"
3+
version = "4.7.4"
44
authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2021"
66

node/chain_spec/src/bytes/chain_spec_main.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

node/chain_spec/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2929,15 +2929,15 @@ mod tests {
29292929
.and_then(Value::as_object)
29302930
.expect("codeSubstitutes object missing");
29312931
let wasm_hex = code_substitutes
2932-
.get("23222482")
2932+
.get("23223844")
29332933
.and_then(Value::as_str)
2934-
.expect("missing codeSubstitute for block 23222482");
2934+
.expect("missing codeSubstitute for block 23223844");
29352935
let wasm_bytes = hex::decode(wasm_hex.trim_start_matches("0x"))
29362936
.expect("codeSubstitutes entry must be valid hex");
29372937
assert_eq!(
29382938
blake2_256(&wasm_bytes),
2939-
hex!("f588f8daeb9bcb63f27c366c1eba41d3d5b4b6d9752be70fe2542b80bbef860f"),
2940-
"unexpected Wasm hash for 23222482 code substitute"
2939+
hex!("c258872ae9e0952cae8c23060c0aa3a1342302efa103678729ffbe541ecf1dee"),
2940+
"unexpected Wasm hash for 23223844 code substitute"
29412941
);
29422942
}
29432943
}

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license = "BSD-4-Clause"
55
homepage = "https://sora.org"
66
repository = "https://github.com/sora-xor/sora2-network"
77
name = "framenode-runtime"
8-
version = "4.7.3"
8+
version = "4.7.4"
99

1010
[package.metadata.docs.rs]
1111
targets = ["x86_64-unknown-linux-gnu"]

runtime/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
258258
spec_name: create_runtime_str!("sora-substrate"),
259259
impl_name: create_runtime_str!("sora-substrate"),
260260
authoring_version: 1,
261-
spec_version: 115,
261+
spec_version: 118,
262262
impl_version: 1,
263263
apis: RUNTIME_API_VERSIONS,
264-
transaction_version: 115,
264+
transaction_version: 118,
265265
state_version: 0,
266266
};
267267

@@ -1319,10 +1319,10 @@ parameter_types! {
13191319
pub const MinimalFeeInAsset: Balance = balance!(0.00000000000000001);
13201320
pub const RemintTbcdBuyBackPercent: Percent = Percent::from_percent(1);
13211321
pub const RemintKusdBuyBackPercent: Percent = Percent::from_percent(39);
1322-
// Hard-fork override: once block 23_218_325 is reached, force the fee multiplier used by
1322+
// Hard-fork override: once block 23_223_845 is reached, force the fee multiplier used by
13231323
// pallet-transaction-payment back to ≈14.8629× to restore the intended fee schedule. This
13241324
// matches the value approved for the emergency fork.
1325-
pub const ForcedMultiplierAt: BlockNumber = 23_218_325;
1325+
pub const ForcedMultiplierAt: BlockNumber = 23_223_845;
13261326
pub const ForcedMultiplierValue: FixedU128 =
13271327
FixedU128::from_inner(14_862_961_117_709_108_000_000_000_000_000u128);
13281328
}

0 commit comments

Comments
 (0)