diff --git a/indexes/utxoindex/src/index.rs b/indexes/utxoindex/src/index.rs index b21d231e6f..7d8ec16b95 100644 --- a/indexes/utxoindex/src/index.rs +++ b/indexes/utxoindex/src/index.rs @@ -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, diff --git a/wallet/core/src/utxo/sync.rs b/wallet/core/src/utxo/sync.rs index fb658d1d32..4ed1d61c13 100644 --- a/wallet/core/src/utxo/sync.rs +++ b/wallet/core/src/utxo/sync.rs @@ -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?