Skip to content

Commit

Permalink
Be explicit about supply in sompi, to avoid confustion.
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Stacks committed Feb 17, 2024
1 parent 651b723 commit c4a1f24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion indexes/utxoindex/src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ impl UtxoIndexApi for UtxoIndex {
let processed_diff = processed.1 - processed.0;

info!(
"[{0}] Resyncing - Utxos: {1} + {2} / {3} ({4:.0}/s); Circulating Supply: {5}; {6:.0}%",
"[{0}] Resyncing - Utxos: {1} + {2} / {3} ({4:.0}/s); Circulating Sompi Supply: {5}; {6:.0}%",
IDENT,
processed.1,
processed_diff,
Expand Down
2 changes: 1 addition & 1 deletion wallet/core/src/utxo/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ impl Default for StateObserver {
ibd_headers: Regex::new(r"IBD: Processed (\d+) block headers \((\d+)%\)").unwrap(),
ibd_blocks: Regex::new(r"IBD: Processed (\d+) blocks \((\d+)%\)").unwrap(),
utxoindex_utxos: Regex::new(
r"[UtxoIndex] Resyncing - Utxos: (\d+) + (\d+) / (\d+) \((\d+)/s\); Circulating Supply: (\d+); (\d+)%",
r"[UtxoIndex] Resyncing - Utxos: (\d+) + (\d+) / (\d+) \((\d+)/s\); Circulating Sompi Supply: (\d+); (\d+)%",
)
.unwrap(),
// For Review - last two digits may be displayed as `NaN`, might this need an edit?
Expand Down

0 comments on commit c4a1f24

Please sign in to comment.