From 445f690264e3e9a16bd0e78bec3d8bb77da4e9c6 Mon Sep 17 00:00:00 2001 From: Vladimir Stepanenko Date: Tue, 5 Nov 2024 15:41:43 +0700 Subject: [PATCH 1/2] Prepare release 4.3.2 --- Cargo.lock | 6 +++--- node/Cargo.toml | 2 +- node/chain_spec/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85181c2cc..a98283815 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3559,7 +3559,7 @@ dependencies = [ [[package]] name = "framenode" -version = "4.3.1" +version = "4.3.2" dependencies = [ "ahash 0.8.5", "assert_cmd", @@ -3643,7 +3643,7 @@ dependencies = [ [[package]] name = "framenode-chain-spec" -version = "4.3.1" +version = "4.3.2" dependencies = [ "common", "faucet", @@ -3669,7 +3669,7 @@ dependencies = [ [[package]] name = "framenode-runtime" -version = "4.3.1" +version = "4.3.2" dependencies = [ "apollo-platform", "assets", diff --git a/node/Cargo.toml b/node/Cargo.toml index c13cefc9c..eea2b7e7b 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framenode" -version = "4.3.1" +version = "4.3.2" authors = ["Parity Technologies "] build = "build.rs" edition = "2021" diff --git a/node/chain_spec/Cargo.toml b/node/chain_spec/Cargo.toml index 58b6ffc0f..7db6071d2 100644 --- a/node/chain_spec/Cargo.toml +++ b/node/chain_spec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framenode-chain-spec" -version = "4.3.1" +version = "4.3.2" authors = ["Parity Technologies "] edition = "2021" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 28a0db7bd..394b09e05 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -5,7 +5,7 @@ license = "BSD-4-Clause" homepage = "https://sora.org" repository = "https://github.com/sora-xor/sora2-network" name = "framenode-runtime" -version = "4.3.1" +version = "4.3.2" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index bd241bedb..880863a26 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -255,10 +255,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("sora-substrate"), impl_name: create_runtime_str!("sora-substrate"), authoring_version: 1, - spec_version: 103, + spec_version: 104, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 103, + transaction_version: 104, state_version: 0, }; @@ -1969,7 +1969,7 @@ impl oracle_proxy::Config for Runtime { } parameter_types! { - pub const GetBandRateStalePeriod: Moment = 60*5*1000; // 5 minutes + pub const GetBandRateStalePeriod: Moment = 60*10*1000; // 10 minutes pub const GetBandRateStaleBlockPeriod: u32 = 600; // 1 hour in blocks pub const BandMaxRelaySymbols: u32 = 100; } From 17e5783235c7c05eabf68197e585a2e902539b75 Mon Sep 17 00:00:00 2001 From: Vladimir Stepanenko Date: Tue, 5 Nov 2024 17:22:33 +0700 Subject: [PATCH 2/2] Remove vXOR from the bridge --- common/src/mock.rs | 2 +- pallets/bridge-proxy/src/lib.rs | 8 ++++++++ pallets/eth-bridge/src/lib.rs | 8 ++++++++ runtime/src/migrations.rs | 6 ++++++ 4 files changed, 23 insertions(+), 1 deletion(-) diff --git a/common/src/mock.rs b/common/src/mock.rs index f179aac95..dd0e7311b 100644 --- a/common/src/mock.rs +++ b/common/src/mock.rs @@ -246,7 +246,7 @@ macro_rules! mock_assets_config { macro_rules! mock_band_config { ($runtime:ty, $on_new_symbol_relayed_hook:ty, $on_symbol_disabled_hook:ty) => { frame_support::parameter_types! { - pub const GetBandRateStalePeriod: u64 = 60*5*1000; // 5 minutes + pub const GetBandRateStalePeriod: u64 = 60*10*1000; // 10 minutes pub const GetBandRateStaleBlockPeriod: u64 = 600; } impl band::Config for $runtime { diff --git a/pallets/bridge-proxy/src/lib.rs b/pallets/bridge-proxy/src/lib.rs index 8ad6b69ed..74a38b942 100644 --- a/pallets/bridge-proxy/src/lib.rs +++ b/pallets/bridge-proxy/src/lib.rs @@ -496,6 +496,14 @@ impl Pallet { network_id, )) } + + pub fn reset_locked_assets( + network_id: GenericNetworkId, + asset_id: AssetIdOf, + ) -> DispatchResult { + LockedAssets::::remove(network_id, asset_id); + Ok(()) + } } impl BridgeAssetLocker for Pallet { diff --git a/pallets/eth-bridge/src/lib.rs b/pallets/eth-bridge/src/lib.rs index c377f303f..a9c90b601 100644 --- a/pallets/eth-bridge/src/lib.rs +++ b/pallets/eth-bridge/src/lib.rs @@ -1826,6 +1826,14 @@ impl Pallet { } Ok(network_id) } + + pub fn remove_thischain_asset( + network_id: T::NetworkId, + asset_id: AssetIdOf, + ) -> DispatchResult { + RegisteredAsset::::remove(network_id, asset_id); + Ok(()) + } } impl BridgeApp for Pallet { diff --git a/runtime/src/migrations.rs b/runtime/src/migrations.rs index 35137a7cf..0f7033898 100644 --- a/runtime/src/migrations.rs +++ b/runtime/src/migrations.rs @@ -103,6 +103,12 @@ impl OnRuntimeUpgrade for DenominateVXor { } } + crate::EthBridge::remove_thischain_asset(0, common::VXOR)?; + crate::BridgeProxy::reset_locked_assets( + bridge_types::GenericNetworkId::EVMLegacy(0), + common::VXOR, + )?; + DispatchResult::Ok(()) }); if let Err(err) = result {