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 39613d1 commit 7cf1451Copy full SHA for 7cf1451
src/store/utils/blocktank.ts
@@ -292,7 +292,14 @@ export const startChannelPurchase = async ({
292
});
293
294
const fees = getFeesStore().onchain;
295
- const feeRes = updateFee({ satsPerByte: fees.fast });
+ let fee = fees.fast;
296
+ // in case of the low fee market, we bump fee by 5 sats
297
+ // details: https://github.com/synonymdev/bitkit/issues/2139
298
+ if (fee <= 10) {
299
+ fee += 5;
300
+ }
301
+
302
+ const feeRes = updateFee({ satsPerByte: fee });
303
if (feeRes.isErr()) {
304
return err(feeRes.error.message);
305
}
0 commit comments