mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-31 06:55:58 +00:00
increase trade limit of no deposit offers to 1.5 xmr
This commit is contained in:
parent
a8fb638594
commit
9a74856fa2
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ import lombok.extern.slf4j.Slf4j;
|
|||
@Singleton
|
||||
public class TradeLimits {
|
||||
private static final BigInteger MAX_TRADE_LIMIT = HavenoUtils.xmrToAtomicUnits(528); // max trade limit for lowest risk payment method. Others will get derived from that.
|
||||
private static final BigInteger MAX_TRADE_LIMIT_WITHOUT_BUYER_AS_TAKER_DEPOSIT = HavenoUtils.xmrToAtomicUnits(1); // max trade limit without deposit from buyer
|
||||
private static final BigInteger MAX_TRADE_LIMIT_WITHOUT_BUYER_AS_TAKER_DEPOSIT = HavenoUtils.xmrToAtomicUnits(1.5); // max trade limit without deposit from buyer
|
||||
|
||||
@Nullable
|
||||
@Getter
|
||||
|
|
Loading…
Reference in a new issue