Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal committed Nov 26, 2021
1 parent c0004de commit 64b7bf1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ where TBackend: WalletBackend + 'static
// We download in chunks for improved streaming efficiency
const CHUNK_SIZE: usize = 125;
let mut utxo_stream = utxo_stream.chunks(CHUNK_SIZE);
const COMMIT_EVERY_N: u64 = (1000 as i64 / CHUNK_SIZE as i64) as u64;
const COMMIT_EVERY_N: u64 = (1000_i64 / CHUNK_SIZE as i64) as u64;
let mut last_utxo_index = 0u64;
let mut iteration_count = 0u64;
let mut utxo_next_await_profiling = Vec::new();
Expand Down

0 comments on commit 64b7bf1

Please sign in to comment.