We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 121d853 commit 9bb2a4bCopy full SHA for 9bb2a4b
modules/snapshot_bootstrapper/src/snapshot_bootstrapper.rs
@@ -133,7 +133,7 @@ impl UtxoCallback for SnapshotHandler {
133
self.utxo_count += 1;
134
135
// Log progress every million UTXOs
136
- if self.utxo_count % 1_000_000 == 0 {
+ if self.utxo_count.is_multiple_of(1_000_000) {
137
info!("Processed {} UTXOs", self.utxo_count);
138
}
139
// TODO: Accumulate UTXO data if needed or send in chunks to UTXOState processor
0 commit comments