Skip to content

Commit e52830e

Browse files
authored
Merge branch 'next' into 10-09-feat_more_robust_unconstrained_tagging
2 parents 56ac761 + 2a48d87 commit e52830e

17 files changed

+584
-107
lines changed

yarn-project/aztec-node/src/aztec-node/config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ describe('createKeyStoreForValidator', () => {
212212
const config = createMockConfig([mockValidatorKey1]);
213213
const result = createKeyStoreForValidator(config);
214214

215-
expect(result?.validators?.[0]?.feeRecipient.equals(AztecAddress.ZERO)).toBeTruthy();
215+
expect(result?.validators?.[0]?.feeRecipient!.equals(AztecAddress.ZERO)).toBeTruthy();
216216
});
217217

218218
it('should create keystore with remote signer details', () => {
File renamed without changes.

yarn-project/node-keystore/examples/multiple-validators-remote.json renamed to yarn-project/node-keystore/examples/v1/multiple-validators-remote.json

File renamed without changes.

yarn-project/node-keystore/examples/prover-with-mnemonic-publisher.json renamed to yarn-project/node-keystore/examples/v1/prover-with-mnemonic-publisher.json

File renamed without changes.

yarn-project/node-keystore/examples/prover-with-publishers-and-funding-account.json renamed to yarn-project/node-keystore/examples/v1/prover-with-publishers-and-funding-account.json

File renamed without changes.

yarn-project/node-keystore/examples/prover-with-single-publisher.json renamed to yarn-project/node-keystore/examples/v1/prover-with-single-publisher.json

File renamed without changes.

yarn-project/node-keystore/examples/simple-prover.json renamed to yarn-project/node-keystore/examples/v1/simple-prover.json

File renamed without changes.

yarn-project/node-keystore/examples/simple-validator.json renamed to yarn-project/node-keystore/examples/v1/simple-validator.json

File renamed without changes.

yarn-project/node-keystore/examples/validator-null.json renamed to yarn-project/node-keystore/examples/v1/validator-null.json

File renamed without changes.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"schemaVersion": 2,
3+
"publisher": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
4+
"coinbase": "0x1111111111111111111111111111111111111111",
5+
"feeRecipient": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
6+
"validators": [
7+
{
8+
"attester": "0x2222222222222222222222222222222222222222222222222222222222222222"
9+
},
10+
{
11+
"attester": "0x3333333333333333333333333333333333333333333333333333333333333333",
12+
"publisher": "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
13+
},
14+
{
15+
"attester": "0x4444444444444444444444444444444444444444444444444444444444444444",
16+
"coinbase": "0x2222222222222222222222222222222222222222",
17+
"feeRecipient": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcd"
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)