mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Reduce DPT_MIN_REMAINDER_TO_LEGACY_BM from 50k sat to 25k sat.
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
a296887a73
commit
56377d8930
1 changed files with 2 additions and 2 deletions
|
@ -69,9 +69,9 @@ public class DelayedPayoutTxReceiverService implements DaoStateListener {
|
|||
// If at DPT there is some leftover amount due to capping of some receivers (burn share is
|
||||
// max. ISSUANCE_BOOST_FACTOR times the issuance share) we send it to legacy BM if it is larger
|
||||
// than DPT_MIN_REMAINDER_TO_LEGACY_BM, otherwise we spend it as miner fee.
|
||||
// 50000 sat is about 10 USD @ 20k price. We use a rather high value as we want to avoid that the legacy BM
|
||||
// 25000 sat is about 5 USD @ 20k price. We use a rather high value as we want to avoid that the legacy BM
|
||||
// gets still payouts.
|
||||
private static final long DPT_MIN_REMAINDER_TO_LEGACY_BM = 50000;
|
||||
private static final long DPT_MIN_REMAINDER_TO_LEGACY_BM = 25000;
|
||||
|
||||
// Min. fee rate for DPT. If fee rate used at take offer time was higher we use that.
|
||||
// We prefer a rather high fee rate to not risk that the DPT gets stuck if required fee rate would
|
||||
|
|
Loading…
Add table
Reference in a new issue