Skip to content

Commit 62e2082

Browse files
author
AztecBot
committed
Merge branch 'next' into merge-train/avm
2 parents 259a9ec + 5e3e5f4 commit 62e2082

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

spartan/terraform/deploy-aztec-infra/values/rpc.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ node:
44
OTEL_SERVICE_NAME: "node"
55
AWS_ACCESS_KEY_ID: ""
66
AWS_SECRET_ACCESS_KEY: ""
7+
RPC_MAX_BODY_SIZE: "50mb"
78

89
preStartScript: |
910
if [ -n "${BOOT_NODE_HOST:-}" ]; then

yarn-project/end-to-end/src/e2e_p2p/add_rollup.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,9 @@ describe('e2e_p2p_add_rollup', () => {
278278
// We are doing some of the things that are in the crosschain harness, but we don't actually want the full thing
279279
const wallet = await TestWallet.create(
280280
node,
281-
{ ...getPXEConfig(), proverEnabled: false },
281+
// Use checkpointed chain tip to avoid anchoring on provisional blocks that the archiver can prune
282+
// when their slot ends without a checkpoint landing on L1.
283+
{ ...getPXEConfig(), proverEnabled: false, syncChainTip: 'checkpointed' },
282284
{ loggerActorLabel: 'pxe-bridge' },
283285
);
284286
const aliceAccountManager = await wallet.createSchnorrAccount(aliceAccount.secret, aliceAccount.salt);

yarn-project/end-to-end/src/e2e_p2p/shared.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ export const submitTransactions = async (
5656
rpcConfig.proverEnabled = false;
5757
const wallet = await TestWallet.create(
5858
node,
59-
{ ...getPXEConfig(), proverEnabled: false },
59+
// Use checkpointed chain tip to avoid anchoring on provisional blocks that the archiver can prune
60+
// when their slot ends without a checkpoint landing on L1.
61+
{ ...getPXEConfig(), proverEnabled: false, syncChainTip: 'checkpointed' },
6062
{ loggerActorLabel: 'pxe-tx' },
6163
);
6264
const contract = new SchnorrHardcodedKeyAccountContract();
@@ -79,7 +81,7 @@ export async function prepareTransactions(
7981

8082
const wallet = await TestWallet.create(
8183
node,
82-
{ ...getPXEConfig(), proverEnabled: false },
84+
{ ...getPXEConfig(), proverEnabled: false, syncChainTip: 'checkpointed' },
8385
{ loggerActorLabel: 'pxe-tx' },
8486
);
8587
const accountContract = new SchnorrHardcodedKeyAccountContract();

0 commit comments

Comments
 (0)