increase max trade limit to 64 xmr
This commit is contained in:
parent
af38f82406
commit
9b79faf29a
@ -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.0);
|
public static BigInteger TOLERATED_SMALL_TRADE_AMOUNT = HavenoUtils.xmrToAtomicUnits(2.5);
|
||||||
|
|
||||||
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(20.0); // max trade limit for lowest risk payment method. Others will get derived from that.
|
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.
|
||||||
@Nullable
|
@Nullable
|
||||||
@Getter
|
@Getter
|
||||||
private static TradeLimits INSTANCE;
|
private static TradeLimits INSTANCE;
|
||||||
|
@ -28,7 +28,7 @@ public class Restrictions {
|
|||||||
public static BigInteger MIN_BUYER_SECURITY_DEPOSIT = HavenoUtils.xmrToAtomicUnits(0.1);
|
public static BigInteger MIN_BUYER_SECURITY_DEPOSIT = HavenoUtils.xmrToAtomicUnits(0.1);
|
||||||
// For the seller we use a fixed one as there is no way the seller can cancel the trade
|
// For the seller we use a fixed one as there is no way the seller can cancel the trade
|
||||||
// To make it editable would just increase complexity.
|
// To make it editable would just increase complexity.
|
||||||
public static BigInteger SELLER_SECURITY_DEPOSIT = MIN_BUYER_SECURITY_DEPOSIT;
|
public static BigInteger MIN_SELLER_SECURITY_DEPOSIT = MIN_BUYER_SECURITY_DEPOSIT;
|
||||||
// At mediation we require a min. payout to the losing party to keep incentive for the trader to accept the
|
// At mediation we require a min. payout to the losing party to keep incentive for the trader to accept the
|
||||||
// mediated payout. For Refund agent cases we do not have that restriction.
|
// mediated payout. For Refund agent cases we do not have that restriction.
|
||||||
private static BigInteger MIN_REFUND_AT_MEDIATED_DISPUTE;
|
private static BigInteger MIN_REFUND_AT_MEDIATED_DISPUTE;
|
||||||
@ -77,7 +77,7 @@ public class Restrictions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static BigInteger getMinSellerSecurityDeposit() {
|
public static BigInteger getMinSellerSecurityDeposit() {
|
||||||
return SELLER_SECURITY_DEPOSIT;
|
return MIN_SELLER_SECURITY_DEPOSIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
// This value must be lower than MIN_BUYER_SECURITY_DEPOSIT and SELLER_SECURITY_DEPOSIT
|
// This value must be lower than MIN_BUYER_SECURITY_DEPOSIT and SELLER_SECURITY_DEPOSIT
|
||||||
|
Loading…
Reference in New Issue
Block a user