Skip to content

Commit

Permalink
fix: e2e bot follows pending chain (#9115)
Browse files Browse the repository at this point in the history
It needs to follow the pending chain.
  • Loading branch information
just-mitch authored Oct 9, 2024
1 parent ffa012f commit 9afd190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_bot.test.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand All @@ -17,6 +16,7 @@ describe('e2e_bot', () => {
config = {
...getBotDefaultConfig(),
...senderPrivateKey,
followChain: 'PENDING',
};
bot = await Bot.create(config, { pxe });
});
Expand Down

0 comments on commit 9afd190

Please sign in to comment.