Skip to content

Commit

Permalink
fix: address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Orris committed Jan 5, 2024
1 parent b6b2ab9 commit 9e2b91f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pallets/time-release/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
//!
Expand Down
2 changes: 1 addition & 1 deletion pallets/time-release/src/migration/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ where

// storage was already migrated.
if on_chain_version.ge(&2) {
log::info!(
log::warn!(

Check warning on line 79 in pallets/time-release/src/migration/v2.rs

View check run for this annotation

Codecov / codecov/patch

pallets/time-release/src/migration/v2.rs#L79

Added line #L79 was not covered by tests
target: LOG_TARGET,
"Old Time Release Locks->Freezes migration attempted to run. Please remove"
);
Expand Down

0 comments on commit 9e2b91f

Please sign in to comment.