Skip to content

Commit

Permalink
Merge pull request #2978 from Cryptorubic/hotfix/fix-mev-bot-min-amount
Browse files Browse the repository at this point in the history
fix minDollarAmountToDisplay
  • Loading branch information
Doctor-Cyclone authored Apr 11, 2024
2 parents 080db4c + 28062d6 commit 83e8c35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class MevBotComponent {
);

@Input() set trade(trade: CrossChainTrade | OnChainTrade) {
const minDollarAmountToDisplay = 0.01;
const minDollarAmountToDisplay = 1000;
const amount = trade?.from.price.multipliedBy(trade?.from.tokenAmount);

this.routingForm = (trade?.from.blockchain === trade?.to.blockchain
Expand Down

0 comments on commit 83e8c35

Please sign in to comment.