Skip to content

Commit

Permalink
increase trade limit of no deposit offers to 1.75 xmr
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Jan 12, 2025
1 parent 533527e commit feffc6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/haveno/core/payment/TradeLimits.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@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.75); // max trade limit without deposit from buyer

@Nullable
@Getter
Expand Down

0 comments on commit feffc6a

Please sign in to comment.