mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Change non-trade mining fee to 20k sat / kb
This commit is contained in:
parent
127f8469f7
commit
b356bb18f0
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ public class FeePolicy {
|
||||||
// The BitcoinJ fee calculation use kb so a tx size < 1kb will still pay the fee for a kb tx.
|
// The BitcoinJ fee calculation use kb so a tx size < 1kb will still pay the fee for a kb tx.
|
||||||
// Our payout tx has about 370 bytes so we get a fee/kb value of about 90 satoshi/byte making it high priority
|
// Our payout tx has about 370 bytes so we get a fee/kb value of about 90 satoshi/byte making it high priority
|
||||||
// Other payout transactions (E.g. arbitrators many collected transactions) will go with 30 satoshi/byte if > 1kb
|
// Other payout transactions (E.g. arbitrators many collected transactions) will go with 30 satoshi/byte if > 1kb
|
||||||
private static Coin NON_TRADE_FEE_PER_KB = DevFlags.STRESS_TEST_MODE ? Coin.valueOf(5_000) : Coin.valueOf(50_000); // 0.0002 BTC about 0.08 EUR @ 400 EUR/BTC
|
private static Coin NON_TRADE_FEE_PER_KB = DevFlags.STRESS_TEST_MODE ? Coin.valueOf(5_000) : Coin.valueOf(20_000); // 0.0002 BTC about 0.08 EUR @ 400 EUR/BTC
|
||||||
|
|
||||||
public static void setNonTradeFeePerKb(Coin nonTradeFeePerKb) {
|
public static void setNonTradeFeePerKb(Coin nonTradeFeePerKb) {
|
||||||
NON_TRADE_FEE_PER_KB = nonTradeFeePerKb;
|
NON_TRADE_FEE_PER_KB = nonTradeFeePerKb;
|
||||||
|
|
Loading…
Add table
Reference in a new issue