mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-03 09:29:44 +00:00
increase trade limits to 3, 6, 12, 96
This commit is contained in:
parent
cc34ff8168
commit
a63118d5eb
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ public class OfferRestrictions {
|
||||||
return new Date().after(REQUIRE_TOR_NODE_ADDRESS_V3_DATE) && Config.baseCurrencyNetwork().isMainnet();
|
return new Date().after(REQUIRE_TOR_NODE_ADDRESS_V3_DATE) && Config.baseCurrencyNetwork().isMainnet();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static BigInteger TOLERATED_SMALL_TRADE_AMOUNT = HavenoUtils.xmrToAtomicUnits(2.5);
|
public static BigInteger TOLERATED_SMALL_TRADE_AMOUNT = HavenoUtils.xmrToAtomicUnits(3);
|
||||||
|
|
||||||
static boolean hasOfferMandatoryCapability(Offer offer, Capability mandatoryCapability) {
|
static boolean hasOfferMandatoryCapability(Offer offer, Capability mandatoryCapability) {
|
||||||
Map<String, String> extraDataMap = offer.getExtraDataMap();
|
Map<String, String> extraDataMap = offer.getExtraDataMap();
|
||||||
|
|
|
@ -31,7 +31,7 @@ import java.math.BigInteger;
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@Singleton
|
@Singleton
|
||||||
public class TradeLimits {
|
public class TradeLimits {
|
||||||
private static final BigInteger MAX_TRADE_LIMIT = HavenoUtils.xmrToAtomicUnits(64.0); // max trade limit for lowest risk payment method. Others will get derived from that.
|
private static final BigInteger MAX_TRADE_LIMIT = HavenoUtils.xmrToAtomicUnits(96.0); // max trade limit for lowest risk payment method. Others will get derived from that.
|
||||||
@Nullable
|
@Nullable
|
||||||
@Getter
|
@Getter
|
||||||
private static TradeLimits INSTANCE;
|
private static TradeLimits INSTANCE;
|
||||||
|
|
Loading…
Reference in a new issue