@aztec/validator-client 3.0.0-nightly.20251121 → 3.0.0-nightly.20251122

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.
@@ -132,7 +132,7 @@ export class BlockProposalHandler {
132
132
  });
133
133
  // Check that I have the same set of l1ToL2Messages as the proposal
134
134
  const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(blockNumber);
135
- const computedInHash = await computeInHashFromL1ToL2Messages(l1ToL2Messages);
135
+ const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
136
136
  const proposalInHash = proposal.payload.header.contentCommitment.inHash;
137
137
  if (!computedInHash.equals(proposalInHash)) {
138
138
  this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/validator-client",
3
- "version": "3.0.0-nightly.20251121",
3
+ "version": "3.0.0-nightly.20251122",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -64,15 +64,15 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/constants": "3.0.0-nightly.20251121",
68
- "@aztec/epoch-cache": "3.0.0-nightly.20251121",
69
- "@aztec/ethereum": "3.0.0-nightly.20251121",
70
- "@aztec/foundation": "3.0.0-nightly.20251121",
71
- "@aztec/node-keystore": "3.0.0-nightly.20251121",
72
- "@aztec/p2p": "3.0.0-nightly.20251121",
73
- "@aztec/slasher": "3.0.0-nightly.20251121",
74
- "@aztec/stdlib": "3.0.0-nightly.20251121",
75
- "@aztec/telemetry-client": "3.0.0-nightly.20251121",
67
+ "@aztec/constants": "3.0.0-nightly.20251122",
68
+ "@aztec/epoch-cache": "3.0.0-nightly.20251122",
69
+ "@aztec/ethereum": "3.0.0-nightly.20251122",
70
+ "@aztec/foundation": "3.0.0-nightly.20251122",
71
+ "@aztec/node-keystore": "3.0.0-nightly.20251122",
72
+ "@aztec/p2p": "3.0.0-nightly.20251122",
73
+ "@aztec/slasher": "3.0.0-nightly.20251122",
74
+ "@aztec/stdlib": "3.0.0-nightly.20251122",
75
+ "@aztec/telemetry-client": "3.0.0-nightly.20251122",
76
76
  "koa": "^2.16.1",
77
77
  "koa-router": "^13.1.1",
78
78
  "tslib": "^2.4.0",
@@ -170,7 +170,7 @@ export class BlockProposalHandler {
170
170
 
171
171
  // Check that I have the same set of l1ToL2Messages as the proposal
172
172
  const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(blockNumber);
173
- const computedInHash = await computeInHashFromL1ToL2Messages(l1ToL2Messages);
173
+ const computedInHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
174
174
  const proposalInHash = proposal.payload.header.contentCommitment.inHash;
175
175
  if (!computedInHash.equals(proposalInHash)) {
176
176
  this.log.warn(`L1 to L2 messages in hash mismatch, skipping processing`, {