fix: Change Tuning::bookOffers minimum limit to 1 (#6812)

Co-authored-by: Bart <11445373+bthomee@users.noreply.github.com>
This commit is contained in:
Bart
2026-04-10 10:38:46 -04:00
committed by Ed Hennis
parent 4e066ea455
commit 53a9690d8e

View File

@@ -49,7 +49,7 @@ static LimitRange constexpr accountOffers = {10, 200, 400};
static LimitRange constexpr accountTx = {10, 200, 400};
/** Limits for the book_offers command. */
static LimitRange constexpr bookOffers = {0, 60, 100};
static LimitRange constexpr bookOffers = {1, 60, 100};
/** Limits for the no_ripple_check command. */
static LimitRange constexpr noRippleCheck = {10, 300, 400};