We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to #15816
Bump fee logic should be updated here
const getEthereumFeeInfo = (info: FeeInfo, gasPrice: string) => { const current = new BigNumber(gasPrice); const minFeeFromNetwork = new BigNumber(fromWei(info.levels[0].feePerUnit, 'gwei')); const getFee = () => { if (minFeeFromNetwork.lte(current.plus(1))) { return current.plus(1); } return minFeeFromNetwork; }; ...
I think we should introduce min bump amount into the config file where you modify minFee, maxFee,... and use it in this function instead of 1`
minFee,
,... and use it in this function instead of
The text was updated successfully, but these errors were encountered:
adderpositive
No branches or pull requests
Related to #15816
Bump fee logic should be updated here
I think we should introduce min bump amount into the config file where you modify
minFee,
maxFee,... and use it in this function instead of
1`The text was updated successfully, but these errors were encountered: