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 d4c454a commit 37dce71Copy full SHA for 37dce71
aggregation_mode/proof_aggregator/src/backend/fetcher.rs
@@ -23,7 +23,7 @@ impl ProofsFetcher {
23
Self { db }
24
}
25
26
- pub async fn query(
+ pub async fn fetch_pending_proofs(
27
&self,
28
engine: ZKVMEngine,
29
limit: i64,
aggregation_mode/proof_aggregator/src/backend/mod.rs
@@ -136,7 +136,7 @@ impl ProofAggregator {
136
) -> Result<(), AggregatedProofSubmissionError> {
137
let (proofs, tasks_id) = self
138
.fetcher
139
- .query(self.engine.clone(), self.config.total_proofs_limit as i64)
+ .fetch_pending_proofs(self.engine.clone(), self.config.total_proofs_limit as i64)
140
.await
141
.map_err(AggregatedProofSubmissionError::FetchingProofs)?;
142
0 commit comments