Skip to content

Commit

Permalink
fix(fees): allow min tx fee of 1sat/vbyte (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Feb 6, 2023
1 parent 1c87a6d commit 4121c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/settings/FeeConfigModal.tsx
Expand Up @@ -24,7 +24,7 @@ const TX_FEES_BLOCKS_MAX = 1_000
* See https://github.com/JoinMarket-Org/joinmarket-clientserver/issues/1360#issuecomment-1262295463
* Last checked on 2022-10-06.
*/
const TX_FEES_SATSPERKILOVBYTE_MIN: SatsPerKiloVByte = 3_000 // 3 sat/vbyte
const TX_FEES_SATSPERKILOVBYTE_MIN: SatsPerKiloVByte = 1_000 // 1 sat/vbyte
// 350 sats/vbyte - no enforcement by JM - this should be a "sane" max value (taken default value of "absurd_fee_per_kb")
const TX_FEES_SATSPERKILOVBYTE_MAX: SatsPerKiloVByte = 350_000
const TX_FEES_SATSPERKILOVBYTE_ADJUSTED_MIN = 1_001 // actual min of `tx_fees` if unit is sats/kilo-vbyte
Expand Down

0 comments on commit 4121c9b

Please sign in to comment.