mirror of
https://github.com/boldsuck/haveno.git
synced 2024-12-22 12:09:22 +00:00
Remove fees
Set fees to 0%
This commit is contained in:
parent
c8f8930c80
commit
0aad245743
1 changed files with 1 additions and 1 deletions
|
@ -91,9 +91,9 @@ public class HavenoUtils {
|
|||
|
||||
// configure fees
|
||||
public static final boolean ARBITRATOR_ASSIGNS_TRADE_FEE_ADDRESS = true;
|
||||
public static final double PENALTY_FEE_PCT = 0.02; // 2%
|
||||
public static final double MAKER_FEE_PCT = 0.00; // 0%
|
||||
public static final double TAKER_FEE_PCT = 0.00; // 0%
|
||||
public static final double PENALTY_FEE_PCT = 0.02; // 2%
|
||||
public static final double MAKER_FEE_FOR_TAKER_WITHOUT_DEPOSIT_PCT = MAKER_FEE_PCT + TAKER_FEE_PCT; // customize maker's fee when no deposit or fee from taker
|
||||
|
||||
// other configuration
|
||||
|
|
Loading…
Reference in a new issue