@aztec/validator-client 2.1.0-rc.2 → 2.1.0-rc.3

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.
@@ -272,7 +272,7 @@ export class NodeKeystoreAdapter {
272
272
  * @returns Coinbase EthAddress
273
273
  */ getCoinbaseAddress(attesterAddress) {
274
274
  const validatorIndex = this.findValidatorIndexForAttester(attesterAddress);
275
- return this.keystoreManager.getCoinbaseAddress(validatorIndex);
275
+ return this.keystoreManager.getCoinbaseAddress(validatorIndex, attesterAddress);
276
276
  }
277
277
  /**
278
278
  * Get the publisher addresses for the validator that contains the given attester.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/validator-client",
3
- "version": "2.1.0-rc.2",
3
+ "version": "2.1.0-rc.3",
4
4
  "main": "dest/index.js",
5
5
  "type": "module",
6
6
  "exports": {
@@ -64,16 +64,16 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/constants": "2.1.0-rc.2",
68
- "@aztec/epoch-cache": "2.1.0-rc.2",
69
- "@aztec/ethereum": "2.1.0-rc.2",
70
- "@aztec/foundation": "2.1.0-rc.2",
71
- "@aztec/node-keystore": "2.1.0-rc.2",
72
- "@aztec/p2p": "2.1.0-rc.2",
73
- "@aztec/prover-client": "2.1.0-rc.2",
74
- "@aztec/slasher": "2.1.0-rc.2",
75
- "@aztec/stdlib": "2.1.0-rc.2",
76
- "@aztec/telemetry-client": "2.1.0-rc.2",
67
+ "@aztec/constants": "2.1.0-rc.3",
68
+ "@aztec/epoch-cache": "2.1.0-rc.3",
69
+ "@aztec/ethereum": "2.1.0-rc.3",
70
+ "@aztec/foundation": "2.1.0-rc.3",
71
+ "@aztec/node-keystore": "2.1.0-rc.3",
72
+ "@aztec/p2p": "2.1.0-rc.3",
73
+ "@aztec/prover-client": "2.1.0-rc.3",
74
+ "@aztec/slasher": "2.1.0-rc.3",
75
+ "@aztec/stdlib": "2.1.0-rc.3",
76
+ "@aztec/telemetry-client": "2.1.0-rc.3",
77
77
  "koa": "^2.16.1",
78
78
  "koa-router": "^13.1.1",
79
79
  "tslib": "^2.4.0",
@@ -324,7 +324,7 @@ export class NodeKeystoreAdapter implements ExtendedValidatorKeyStore {
324
324
  */
325
325
  getCoinbaseAddress(attesterAddress: EthAddress): EthAddress {
326
326
  const validatorIndex = this.findValidatorIndexForAttester(attesterAddress);
327
- return this.keystoreManager.getCoinbaseAddress(validatorIndex);
327
+ return this.keystoreManager.getCoinbaseAddress(validatorIndex, attesterAddress);
328
328
  }
329
329
 
330
330
  /**