@aztec/prover-client 2.0.0-nightly.20250827 → 2.0.0-nightly.20250828
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -463,7 +463,7 @@ import { ProvingBrokerInstrumentation } from './proving_broker_instrumentation.j
|
|
|
463
463
|
}
|
|
464
464
|
if (jobsToClean.length > 0) {
|
|
465
465
|
this.cleanUpProvingJobState(jobsToClean);
|
|
466
|
-
this.logger.
|
|
466
|
+
this.logger.verbose(`Cleaned up proving jobs=${jobsToClean.length}`);
|
|
467
467
|
}
|
|
468
468
|
}
|
|
469
469
|
reEnqueueExpiredJobs() {
|
|
@@ -134,7 +134,7 @@ export class KVBrokerDatabase {
|
|
|
134
134
|
if (!db) {
|
|
135
135
|
continue;
|
|
136
136
|
}
|
|
137
|
-
this.logger.
|
|
137
|
+
this.logger.verbose(`Deleting broker database for epoch ${old}`);
|
|
138
138
|
await db.delete();
|
|
139
139
|
this.epochs.delete(old);
|
|
140
140
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-client",
|
|
3
|
-
"version": "2.0.0-nightly.
|
|
3
|
+
"version": "2.0.0-nightly.20250828",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -68,19 +68,19 @@
|
|
|
68
68
|
]
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@aztec/bb-prover": "2.0.0-nightly.
|
|
72
|
-
"@aztec/blob-lib": "2.0.0-nightly.
|
|
73
|
-
"@aztec/constants": "2.0.0-nightly.
|
|
74
|
-
"@aztec/ethereum": "2.0.0-nightly.
|
|
75
|
-
"@aztec/foundation": "2.0.0-nightly.
|
|
76
|
-
"@aztec/kv-store": "2.0.0-nightly.
|
|
77
|
-
"@aztec/noir-protocol-circuits-types": "2.0.0-nightly.
|
|
78
|
-
"@aztec/noir-types": "2.0.0-nightly.
|
|
79
|
-
"@aztec/protocol-contracts": "2.0.0-nightly.
|
|
80
|
-
"@aztec/simulator": "2.0.0-nightly.
|
|
81
|
-
"@aztec/stdlib": "2.0.0-nightly.
|
|
82
|
-
"@aztec/telemetry-client": "2.0.0-nightly.
|
|
83
|
-
"@aztec/world-state": "2.0.0-nightly.
|
|
71
|
+
"@aztec/bb-prover": "2.0.0-nightly.20250828",
|
|
72
|
+
"@aztec/blob-lib": "2.0.0-nightly.20250828",
|
|
73
|
+
"@aztec/constants": "2.0.0-nightly.20250828",
|
|
74
|
+
"@aztec/ethereum": "2.0.0-nightly.20250828",
|
|
75
|
+
"@aztec/foundation": "2.0.0-nightly.20250828",
|
|
76
|
+
"@aztec/kv-store": "2.0.0-nightly.20250828",
|
|
77
|
+
"@aztec/noir-protocol-circuits-types": "2.0.0-nightly.20250828",
|
|
78
|
+
"@aztec/noir-types": "2.0.0-nightly.20250828",
|
|
79
|
+
"@aztec/protocol-contracts": "2.0.0-nightly.20250828",
|
|
80
|
+
"@aztec/simulator": "2.0.0-nightly.20250828",
|
|
81
|
+
"@aztec/stdlib": "2.0.0-nightly.20250828",
|
|
82
|
+
"@aztec/telemetry-client": "2.0.0-nightly.20250828",
|
|
83
|
+
"@aztec/world-state": "2.0.0-nightly.20250828",
|
|
84
84
|
"@google-cloud/storage": "^7.15.0",
|
|
85
85
|
"@iarna/toml": "^2.2.5",
|
|
86
86
|
"commander": "^12.1.0",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"zod": "^3.23.8"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@aztec/noir-contracts.js": "2.0.0-nightly.
|
|
93
|
+
"@aztec/noir-contracts.js": "2.0.0-nightly.20250828",
|
|
94
94
|
"@jest/globals": "^30.0.0",
|
|
95
95
|
"@types/jest": "^30.0.0",
|
|
96
96
|
"@types/node": "^22.15.17",
|
|
@@ -572,7 +572,7 @@ export class ProvingBroker implements ProvingJobProducer, ProvingJobConsumer, Tr
|
|
|
572
572
|
|
|
573
573
|
if (jobsToClean.length > 0) {
|
|
574
574
|
this.cleanUpProvingJobState(jobsToClean);
|
|
575
|
-
this.logger.
|
|
575
|
+
this.logger.verbose(`Cleaned up proving jobs=${jobsToClean.length}`);
|
|
576
576
|
}
|
|
577
577
|
}
|
|
578
578
|
|
|
@@ -171,7 +171,7 @@ export class KVBrokerDatabase implements ProvingBrokerDatabase {
|
|
|
171
171
|
if (!db) {
|
|
172
172
|
continue;
|
|
173
173
|
}
|
|
174
|
-
this.logger.
|
|
174
|
+
this.logger.verbose(`Deleting broker database for epoch ${old}`);
|
|
175
175
|
await db.delete();
|
|
176
176
|
this.epochs.delete(old);
|
|
177
177
|
}
|