We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8062d commit f6adbbeCopy full SHA for f6adbbe
packages/suite/src/hooks/wallet/useRbfForm.ts
@@ -48,7 +48,7 @@ const getEthereumFeeInfo = (info: FeeInfo, gasPrice: string) => {
48
const minFeeFromNetwork = new BigNumber(fromWei(info.levels[0].feePerUnit, 'gwei'));
49
50
const getFee = () => {
51
- if (minFeeFromNetwork.lte(current)) {
+ if (minFeeFromNetwork.lte(current.plus(1))) {
52
return current.plus(1);
53
}
54
0 commit comments