File tree Expand file tree Collapse file tree 7 files changed +15
-15
lines changed
Expand file tree Collapse file tree 7 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " framenode"
3- version = " 4.7.3 "
3+ version = " 4.7.4 "
44authors = [" Parity Technologies <admin@parity.io>" ]
55build = " build.rs"
66edition = " 2021"
Original file line number Diff line number Diff line change 11[package ]
22name = " framenode-chain-spec"
3- version = " 4.7.3 "
3+ version = " 4.7.4 "
44authors = [" Parity Technologies <admin@parity.io>" ]
55edition = " 2021"
66
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ license = "BSD-4-Clause"
55homepage = " https://sora.org"
66repository = " https://github.com/sora-xor/sora2-network"
77name = " framenode-runtime"
8- version = " 4.7.3 "
8+ version = " 4.7.4 "
99
1010[package .metadata .docs .rs ]
1111targets = [" x86_64-unknown-linux-gnu" ]
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments