From 9e2b91f965530bc7f9e864380ed923b73c026c4a Mon Sep 17 00:00:00 2001 From: Matthew Orris <--help> Date: Fri, 5 Jan 2024 11:16:43 -0700 Subject: [PATCH] fix: address PR comments --- pallets/time-release/src/lib.rs | 6 +++--- pallets/time-release/src/migration/v2.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pallets/time-release/src/lib.rs b/pallets/time-release/src/lib.rs index 848cf80b32..ed4deb7627 100644 --- a/pallets/time-release/src/lib.rs +++ b/pallets/time-release/src/lib.rs @@ -4,9 +4,9 @@ //! //! ## Overview //! -//! Time-release module provides a means of scheduled balance freeze on an account. It -//! uses the *graded release* way, which thaws a specific amount of balance -//! every period of time, until all balances are thawed. +//! Time-release module provides a means of scheduled release (thaw) of a frozen balance in an account. +//! It uses the *graded release* approach, which thaws a specific amount of balance per period (measured +//! in blocks), until all frozen balances are thawed. //! //! ### Release Schedule //! diff --git a/pallets/time-release/src/migration/v2.rs b/pallets/time-release/src/migration/v2.rs index 5c57105a26..b97ccc48a8 100644 --- a/pallets/time-release/src/migration/v2.rs +++ b/pallets/time-release/src/migration/v2.rs @@ -76,7 +76,7 @@ where // storage was already migrated. if on_chain_version.ge(&2) { - log::info!( + log::warn!( target: LOG_TARGET, "Old Time Release Locks->Freezes migration attempted to run. Please remove" );