We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d087c55 commit e763ee6Copy full SHA for e763ee6
2 files changed
aggregation_mode/proof_aggregator/src/backend/db.rs
@@ -25,7 +25,7 @@ impl Db {
25
26
pub async fn get_pending_tasks_and_mark_them_as_processing(
27
&self,
28
- proving_system_id: i64,
+ proving_system_id: i32,
29
limit: i64,
30
) -> Result<Vec<Task>, DbError> {
31
sqlx::query_as::<_, Task>(
aggregation_mode/proof_aggregator/src/backend/fetcher.rs
@@ -30,7 +30,7 @@ impl ProofsFetcher {
) -> Result<(Vec<AlignedProof>, Vec<Uuid>), ProofsFetcherError> {
let tasks = self
32
.db
33
- .get_pending_tasks_and_mark_them_as_processing(engine.proving_system_id() as i64, limit)
+ .get_pending_tasks_and_mark_them_as_processing(engine.proving_system_id() as i32, limit)
34
.await
35
.map_err(ProofsFetcherError::Query)?;
36
0 commit comments