mirror of
https://github.com/boldsuck/haveno.git
synced 2024-12-22 20:19:21 +00:00
increase trade fees to 0.15% for maker and 0.75% for taker
This commit is contained in:
parent
98129c70ed
commit
7346ced337
1 changed files with 2 additions and 2 deletions
|
@ -249,7 +249,7 @@ public class HavenoUtils {
|
|||
}
|
||||
|
||||
private static BigInteger getMakerFeePerXmr() {
|
||||
return HavenoUtils.xmrToAtomicUnits(0.001);
|
||||
return HavenoUtils.xmrToAtomicUnits(0.0015);
|
||||
}
|
||||
|
||||
public static BigInteger getMinMakerFee() {
|
||||
|
@ -257,7 +257,7 @@ public class HavenoUtils {
|
|||
}
|
||||
|
||||
private static BigInteger getTakerFeePerXmr() {
|
||||
return HavenoUtils.xmrToAtomicUnits(0.003);
|
||||
return HavenoUtils.xmrToAtomicUnits(0.0075);
|
||||
}
|
||||
|
||||
public static BigInteger getMinTakerFee() {
|
||||
|
|
Loading…
Reference in a new issue