@aztec/aztec-node 0.85.0-alpha-testnet.5 → 0.85.0-alpha-testnet.8

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.
@@ -676,7 +676,7 @@ import { NodeMetrics } from './node_metrics.js';
676
676
  try {
677
677
  const processor = publicProcessorFactory.create(merkleTreeFork, newGlobalVariables, skipFeeEnforcement);
678
678
  // REFACTOR: Consider merging ProcessReturnValues into ProcessedTx
679
- const [processedTxs, failedTxs, returns] = await processor.process([
679
+ const [processedTxs, failedTxs, _usedTxs, returns] = await processor.process([
680
680
  tx
681
681
  ]);
682
682
  // REFACTOR: Consider returning the error rather than throwing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec-node",
3
- "version": "0.85.0-alpha-testnet.5",
3
+ "version": "0.85.0-alpha-testnet.8",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -63,27 +63,27 @@
63
63
  ]
64
64
  },
65
65
  "dependencies": {
66
- "@aztec/archiver": "0.85.0-alpha-testnet.5",
67
- "@aztec/bb-prover": "0.85.0-alpha-testnet.5",
68
- "@aztec/blob-sink": "0.85.0-alpha-testnet.5",
69
- "@aztec/constants": "0.85.0-alpha-testnet.5",
70
- "@aztec/epoch-cache": "0.85.0-alpha-testnet.5",
71
- "@aztec/ethereum": "0.85.0-alpha-testnet.5",
72
- "@aztec/foundation": "0.85.0-alpha-testnet.5",
73
- "@aztec/kv-store": "0.85.0-alpha-testnet.5",
74
- "@aztec/l1-artifacts": "0.85.0-alpha-testnet.5",
75
- "@aztec/merkle-tree": "0.85.0-alpha-testnet.5",
76
- "@aztec/node-lib": "0.85.0-alpha-testnet.5",
77
- "@aztec/noir-protocol-circuits-types": "0.85.0-alpha-testnet.5",
78
- "@aztec/p2p": "0.85.0-alpha-testnet.5",
79
- "@aztec/protocol-contracts": "0.85.0-alpha-testnet.5",
80
- "@aztec/prover-client": "0.85.0-alpha-testnet.5",
81
- "@aztec/sequencer-client": "0.85.0-alpha-testnet.5",
82
- "@aztec/simulator": "0.85.0-alpha-testnet.5",
83
- "@aztec/stdlib": "0.85.0-alpha-testnet.5",
84
- "@aztec/telemetry-client": "0.85.0-alpha-testnet.5",
85
- "@aztec/validator-client": "0.85.0-alpha-testnet.5",
86
- "@aztec/world-state": "0.85.0-alpha-testnet.5",
66
+ "@aztec/archiver": "0.85.0-alpha-testnet.8",
67
+ "@aztec/bb-prover": "0.85.0-alpha-testnet.8",
68
+ "@aztec/blob-sink": "0.85.0-alpha-testnet.8",
69
+ "@aztec/constants": "0.85.0-alpha-testnet.8",
70
+ "@aztec/epoch-cache": "0.85.0-alpha-testnet.8",
71
+ "@aztec/ethereum": "0.85.0-alpha-testnet.8",
72
+ "@aztec/foundation": "0.85.0-alpha-testnet.8",
73
+ "@aztec/kv-store": "0.85.0-alpha-testnet.8",
74
+ "@aztec/l1-artifacts": "0.85.0-alpha-testnet.8",
75
+ "@aztec/merkle-tree": "0.85.0-alpha-testnet.8",
76
+ "@aztec/node-lib": "0.85.0-alpha-testnet.8",
77
+ "@aztec/noir-protocol-circuits-types": "0.85.0-alpha-testnet.8",
78
+ "@aztec/p2p": "0.85.0-alpha-testnet.8",
79
+ "@aztec/protocol-contracts": "0.85.0-alpha-testnet.8",
80
+ "@aztec/prover-client": "0.85.0-alpha-testnet.8",
81
+ "@aztec/sequencer-client": "0.85.0-alpha-testnet.8",
82
+ "@aztec/simulator": "0.85.0-alpha-testnet.8",
83
+ "@aztec/stdlib": "0.85.0-alpha-testnet.8",
84
+ "@aztec/telemetry-client": "0.85.0-alpha-testnet.8",
85
+ "@aztec/validator-client": "0.85.0-alpha-testnet.8",
86
+ "@aztec/world-state": "0.85.0-alpha-testnet.8",
87
87
  "koa": "^2.16.1",
88
88
  "koa-router": "^12.0.0",
89
89
  "tslib": "^2.4.0",
@@ -954,7 +954,7 @@ export class AztecNodeService implements AztecNode, AztecNodeAdmin, Traceable {
954
954
  const processor = publicProcessorFactory.create(merkleTreeFork, newGlobalVariables, skipFeeEnforcement);
955
955
 
956
956
  // REFACTOR: Consider merging ProcessReturnValues into ProcessedTx
957
- const [processedTxs, failedTxs, returns] = await processor.process([tx]);
957
+ const [processedTxs, failedTxs, _usedTxs, returns] = await processor.process([tx]);
958
958
  // REFACTOR: Consider returning the error rather than throwing
959
959
  if (failedTxs.length) {
960
960
  this.log.warn(`Simulated tx ${txHash} fails: ${failedTxs[0].error}`, { txHash });