@aztec/validator-client 5.0.0-nightly.20260704 → 5.0.0-nightly.20260706
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.
- package/dest/proposal_handler.js +1 -1
- package/package.json +19 -19
- package/src/proposal_handler.ts +1 -1
package/dest/proposal_handler.js
CHANGED
|
@@ -499,7 +499,7 @@ const MAX_TRACKED_INVALID_PROPOSAL_SLOTS = 1000;
|
|
|
499
499
|
};
|
|
500
500
|
}
|
|
501
501
|
// If we succeeded, push this block into the archiver (unless disabled)
|
|
502
|
-
if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver
|
|
502
|
+
if (reexecutionResult?.block && !this.config.skipPushProposedBlocksToArchiver) {
|
|
503
503
|
await this.blockSource.addBlock(reexecutionResult.block);
|
|
504
504
|
}
|
|
505
505
|
this.log.info(`Successfully re-executed block ${blockNumber} proposal at index ${proposal.indexWithinCheckpoint} on slot ${slotNumber}`, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/validator-client",
|
|
3
|
-
"version": "5.0.0-nightly.
|
|
3
|
+
"version": "5.0.0-nightly.20260706",
|
|
4
4
|
"main": "dest/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -64,30 +64,30 @@
|
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@aztec/blob-client": "5.0.0-nightly.
|
|
68
|
-
"@aztec/blob-lib": "5.0.0-nightly.
|
|
69
|
-
"@aztec/constants": "5.0.0-nightly.
|
|
70
|
-
"@aztec/epoch-cache": "5.0.0-nightly.
|
|
71
|
-
"@aztec/ethereum": "5.0.0-nightly.
|
|
72
|
-
"@aztec/foundation": "5.0.0-nightly.
|
|
73
|
-
"@aztec/node-keystore": "5.0.0-nightly.
|
|
74
|
-
"@aztec/noir-protocol-circuits-types": "5.0.0-nightly.
|
|
75
|
-
"@aztec/p2p": "5.0.0-nightly.
|
|
76
|
-
"@aztec/protocol-contracts": "5.0.0-nightly.
|
|
77
|
-
"@aztec/prover-client": "5.0.0-nightly.
|
|
78
|
-
"@aztec/simulator": "5.0.0-nightly.
|
|
79
|
-
"@aztec/slasher": "5.0.0-nightly.
|
|
80
|
-
"@aztec/stdlib": "5.0.0-nightly.
|
|
81
|
-
"@aztec/telemetry-client": "5.0.0-nightly.
|
|
82
|
-
"@aztec/validator-ha-signer": "5.0.0-nightly.
|
|
67
|
+
"@aztec/blob-client": "5.0.0-nightly.20260706",
|
|
68
|
+
"@aztec/blob-lib": "5.0.0-nightly.20260706",
|
|
69
|
+
"@aztec/constants": "5.0.0-nightly.20260706",
|
|
70
|
+
"@aztec/epoch-cache": "5.0.0-nightly.20260706",
|
|
71
|
+
"@aztec/ethereum": "5.0.0-nightly.20260706",
|
|
72
|
+
"@aztec/foundation": "5.0.0-nightly.20260706",
|
|
73
|
+
"@aztec/node-keystore": "5.0.0-nightly.20260706",
|
|
74
|
+
"@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260706",
|
|
75
|
+
"@aztec/p2p": "5.0.0-nightly.20260706",
|
|
76
|
+
"@aztec/protocol-contracts": "5.0.0-nightly.20260706",
|
|
77
|
+
"@aztec/prover-client": "5.0.0-nightly.20260706",
|
|
78
|
+
"@aztec/simulator": "5.0.0-nightly.20260706",
|
|
79
|
+
"@aztec/slasher": "5.0.0-nightly.20260706",
|
|
80
|
+
"@aztec/stdlib": "5.0.0-nightly.20260706",
|
|
81
|
+
"@aztec/telemetry-client": "5.0.0-nightly.20260706",
|
|
82
|
+
"@aztec/validator-ha-signer": "5.0.0-nightly.20260706",
|
|
83
83
|
"koa": "^2.16.1",
|
|
84
84
|
"koa-router": "^13.1.1",
|
|
85
85
|
"tslib": "^2.4.0",
|
|
86
86
|
"viem": "npm:@aztec/viem@2.38.2"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@aztec/archiver": "5.0.0-nightly.
|
|
90
|
-
"@aztec/world-state": "5.0.0-nightly.
|
|
89
|
+
"@aztec/archiver": "5.0.0-nightly.20260706",
|
|
90
|
+
"@aztec/world-state": "5.0.0-nightly.20260706",
|
|
91
91
|
"@electric-sql/pglite": "^0.3.14",
|
|
92
92
|
"@jest/globals": "^30.0.0",
|
|
93
93
|
"@types/jest": "^30.0.0",
|
package/src/proposal_handler.ts
CHANGED
|
@@ -591,7 +591,7 @@ export class ProposalHandler {
|
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
// If we succeeded, push this block into the archiver (unless disabled)
|
|
594
|
-
if (reexecutionResult?.block && this.config.skipPushProposedBlocksToArchiver
|
|
594
|
+
if (reexecutionResult?.block && !this.config.skipPushProposedBlocksToArchiver) {
|
|
595
595
|
await this.blockSource.addBlock(reexecutionResult.block);
|
|
596
596
|
}
|
|
597
597
|
|