@aztec/prover-node 0.87.6 → 0.87.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.
@@ -17,7 +17,7 @@ class P2PCoordinationPool {
17
17
  return this.p2p.getTxsByHashFromPool(txHashes);
18
18
  }
19
19
  addTxs(txs) {
20
- return this.p2p.addTxs(txs);
20
+ return this.p2p.addTxsToPool(txs);
21
21
  }
22
22
  }
23
23
  // Wraps an in memory tx pool into a coordination pool. Used for testing when no p2p/tx pool is available.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "0.87.6",
3
+ "version": "0.87.8",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -52,25 +52,25 @@
52
52
  ]
53
53
  },
54
54
  "dependencies": {
55
- "@aztec/archiver": "0.87.6",
56
- "@aztec/bb-prover": "0.87.6",
57
- "@aztec/blob-sink": "0.87.6",
58
- "@aztec/constants": "0.87.6",
59
- "@aztec/epoch-cache": "0.87.6",
60
- "@aztec/ethereum": "0.87.6",
61
- "@aztec/foundation": "0.87.6",
62
- "@aztec/kv-store": "0.87.6",
63
- "@aztec/l1-artifacts": "0.87.6",
64
- "@aztec/node-lib": "0.87.6",
65
- "@aztec/noir-protocol-circuits-types": "0.87.6",
66
- "@aztec/p2p": "0.87.6",
67
- "@aztec/protocol-contracts": "0.87.6",
68
- "@aztec/prover-client": "0.87.6",
69
- "@aztec/sequencer-client": "0.87.6",
70
- "@aztec/simulator": "0.87.6",
71
- "@aztec/stdlib": "0.87.6",
72
- "@aztec/telemetry-client": "0.87.6",
73
- "@aztec/world-state": "0.87.6",
55
+ "@aztec/archiver": "0.87.8",
56
+ "@aztec/bb-prover": "0.87.8",
57
+ "@aztec/blob-sink": "0.87.8",
58
+ "@aztec/constants": "0.87.8",
59
+ "@aztec/epoch-cache": "0.87.8",
60
+ "@aztec/ethereum": "0.87.8",
61
+ "@aztec/foundation": "0.87.8",
62
+ "@aztec/kv-store": "0.87.8",
63
+ "@aztec/l1-artifacts": "0.87.8",
64
+ "@aztec/node-lib": "0.87.8",
65
+ "@aztec/noir-protocol-circuits-types": "0.87.8",
66
+ "@aztec/p2p": "0.87.8",
67
+ "@aztec/protocol-contracts": "0.87.8",
68
+ "@aztec/prover-client": "0.87.8",
69
+ "@aztec/sequencer-client": "0.87.8",
70
+ "@aztec/simulator": "0.87.8",
71
+ "@aztec/stdlib": "0.87.8",
72
+ "@aztec/telemetry-client": "0.87.8",
73
+ "@aztec/world-state": "0.87.8",
74
74
  "source-map-support": "^0.5.21",
75
75
  "tslib": "^2.4.0",
76
76
  "viem": "2.23.7"
@@ -34,7 +34,7 @@ class P2PCoordinationPool implements CoordinationPool {
34
34
  return this.p2p.getTxsByHashFromPool(txHashes);
35
35
  }
36
36
  addTxs(txs: Tx[]): Promise<void> {
37
- return this.p2p.addTxs(txs);
37
+ return this.p2p.addTxsToPool(txs);
38
38
  }
39
39
  }
40
40