Skip to content

Commit

Permalink
Satisfy clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kstepanovdev committed Nov 11, 2024
1 parent b4866af commit 079a666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nft_ingester/src/api/synchronization_state_consistency.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl SynchronizationStateConsistencyChecker {
let mut rx = rx.resubscribe();
tasks.lock().await.spawn(async move {
while rx.is_empty() {
let Ok(Some(index_seq)) = pg_client.fetch_last_synced_id(asset_type.clone()).await else {
let Ok(Some(index_seq)) = pg_client.fetch_last_synced_id(asset_type).await else {
continue;
};
let Ok(decoded_index_update_key) = decode_u64x2_pubkey(index_seq) else {
Expand Down

0 comments on commit 079a666

Please sign in to comment.