Skip to content

Commit

Permalink
Merge pull request #79 from bancorprotocol/78-bugfix-remove-dai-from-…
Browse files Browse the repository at this point in the history
…flashloan_tokens

Remove DAI from default `flashloan_tokens` to fix logging error message.
  • Loading branch information
mikewcasale authored Aug 13, 2023
2 parents b856854 + ee5eb23 commit d4e5a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
)
@click.option(
"--flashloan_tokens",
default=f"{T.WETH},{T.DAI},{T.USDC},{T.USDT},{T.WBTC},{T.BNT},{T.NATIVE_ETH}",
default=f"{T.WETH},{T.USDC},{T.USDT},{T.WBTC},{T.BNT},{T.NATIVE_ETH}",
type=str,
help="The --flashloan_tokens flag refers to those token denominations which the bot can take a flash loan in. By default, these are [WETH, DAI, USDC, USDT, WBTC, BNT, NATIVE_ETH]. If you override the default to TKN, the search space is decreased for all modes, including the b3_two_hop mode (assuming that --limit_bancor3_flashloan_tokens=True).",
)
Expand Down

0 comments on commit d4e5a7e

Please sign in to comment.