We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f14c8f7 commit b949475Copy full SHA for b949475
1 file changed
aggregation_mode/src/backend/fetcher.rs
@@ -55,7 +55,9 @@ impl ProofsFetcher {
55
.map_err(|e| ProofsFetcherError::GetBlockNumber(e.to_string()))?;
56
57
if current_block < self.last_processed_block {
58
- return Err(ProofsFetcherError::GetBlockNumber("Invalid last processed block".to_string()));
+ return Err(ProofsFetcherError::GetBlockNumber(
59
+ "Invalid last processed block".to_string(),
60
+ ));
61
}
62
63
info!(
0 commit comments