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 }); });