Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion yarn-project/bot/src/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ export class BotFactory {
private readonly store: BotStore,
private readonly aztecNode: AztecNode,
private readonly aztecNodeAdmin?: AztecNodeAdmin,
) {}
) {
// Set fee padding on the wallet so that all transactions during setup
// (token deploy, minting, etc.) use the configured padding, not the default.
this.wallet.setMinFeePadding(config.minFeePadding);
}

/**
* Initializes a new bot by setting up the sender account, registering the recipient,
Expand Down
Loading