Skip to content

Commit

Permalink
Prepare release 4.3.1 (#1259)
Browse files Browse the repository at this point in the history
* Prepare release 4.3.1

* Fix build
  • Loading branch information
vovac12 authored Oct 31, 2024
1 parent e15b3b4 commit 374f1b1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 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 node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "framenode"
version = "4.3.0"
version = "4.3.1"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion node/chain_spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "framenode-chain-spec"
version = "4.3.0"
version = "4.3.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion pallets/pool-xyk/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ impl<T: Config> Pallet<T> {
*weight = weight.saturating_add(T::DbWeight::get().writes(1));
TotalIssuances::<T>::insert(&pool_acc, new_issuance);
frame_support::log::debug!(
"Pool adjusted {} for {} providers: issuance {} -> {}",
"Pool adjusted {:?} for {} providers: issuance {} -> {}",
pool_acc,
providers,
current_issuance,
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0"
version = "4.3.1"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand Down
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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: 102,
spec_version: 103,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 102,
transaction_version: 103,
state_version: 0,
};

Expand Down
4 changes: 2 additions & 2 deletions runtime/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl OnRuntimeUpgrade for DenominateVXor {
data.frozen /= DENOM_COEFF;
new_issuance += data.free;
log::debug!(
"Denominated balance of {}, balance: {} => {}",
"Denominated balance of {:?}, balance: {} => {}",
account,
before,
data.free
Expand All @@ -68,7 +68,7 @@ impl OnRuntimeUpgrade for DenominateVXor {
for lock in locks.iter_mut() {
lock.amount /= DENOM_COEFF;
}
log::debug!("Denominated locks of {}", account);
log::debug!("Denominated locks of {:?}", account);
}
Some(locks)
});
Expand Down

0 comments on commit 374f1b1

Please sign in to comment.