From f2218f7e4c01dcbd471cb29118f69c81f40b19b0 Mon Sep 17 00:00:00 2001 From: just-mitch Date: Wed, 9 Oct 2024 14:57:26 +0000 Subject: [PATCH] fix: e2e bot follows pending chain --- yarn-project/end-to-end/src/e2e_bot.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/end-to-end/src/e2e_bot.test.ts b/yarn-project/end-to-end/src/e2e_bot.test.ts index 5446f6f31c6..5893b46d947 100644 --- a/yarn-project/end-to-end/src/e2e_bot.test.ts +++ b/yarn-project/end-to-end/src/e2e_bot.test.ts @@ -1,6 +1,5 @@ import { Fr, type PXE } from '@aztec/aztec.js'; -import { Bot, type BotConfig } from '@aztec/bot'; -import { SupportedTokenContracts, getBotDefaultConfig } from '@aztec/bot'; +import { Bot, type BotConfig, SupportedTokenContracts, getBotDefaultConfig } from '@aztec/bot'; import { setup } from './fixtures/utils.js'; @@ -17,6 +16,7 @@ describe('e2e_bot', () => { config = { ...getBotDefaultConfig(), ...senderPrivateKey, + followChain: 'PENDING', }; bot = await Bot.create(config, { pxe }); });