Commit 1890f323 authored by Ralph Pichler's avatar Ralph Pichler Committed by GitHub

feat: reduce required eth (#2018)

parent ebedbfe7
......@@ -53,7 +53,7 @@ func checkBalance(
return err
}
minimumEth := gasPrice.Mul(gasPrice, big.NewInt(2000000))
minimumEth := gasPrice.Mul(gasPrice, big.NewInt(250000))
insufficientERC20 := erc20Balance.Cmp(swapInitialDeposit) < 0
insufficientETH := ethBalance.Cmp(minimumEth) < 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment