diff --git a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBsq.java b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBsq.java index d1c4e84..ac862bc 100644 --- a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBsq.java +++ b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBsq.java @@ -48,7 +48,7 @@ import static protobuf.OfferDirection.SELL; * * the offer's BTC amount is between 0.10 and 0.25 BTC * the offer maker is one of two preferred trading peers - * the current transaction mining fee rate is below 20 sats / byte + * the current transaction mining fee rate is less than or equal 20 sats / byte * * The bot configurations for these rules are set in TakeBestPricedOfferToBuyBsq.properties as follows: * diff --git a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBtc.java b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBtc.java index b636ae9..476af30 100644 --- a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBtc.java +++ b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyBtc.java @@ -49,7 +49,7 @@ import static protobuf.OfferDirection.BUY; * * the offer's BTC amount is between 0.10 and 0.25 BTC * the offer maker is one of two preferred trading peers - * the current transaction mining fee rate is below 20 sats / byte + * the current transaction mining fee rate is less than or equal 20 sats / byte * * The bot configurations for these rules are set in TakeBestPricedOfferToBuyBtc.properties as follows: * diff --git a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyXmr.java b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyXmr.java index b601734..168274b 100644 --- a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyXmr.java +++ b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToBuyXmr.java @@ -48,7 +48,7 @@ import static protobuf.OfferDirection.SELL; * * the offer's BTC amount is between 0.50 and 1.00 BTC * the offer maker is one of two preferred trading peers - * the current transaction mining fee rate is below 20 sats / byte + * the current transaction mining fee rate is less than or equal 20 sats / byte * * The bot configurations for these rules are set in TakeBestPricedOfferToBuyXmr.properties as follows: * diff --git a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellBtc.java b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellBtc.java index e70595a..d44c37f 100644 --- a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellBtc.java +++ b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellBtc.java @@ -49,7 +49,7 @@ import static protobuf.OfferDirection.SELL; * * the offer's BTC amount is between 0.10 and 0.25 BTC * the offer maker is one of two preferred trading peers - * the current transaction mining fee rate is below 20 sats / byte + * the current transaction mining fee rate is less than or equal 20 sats / byte * * The bot configurations for these rules are set in TakeBestPricedOfferToSellBtc.properties as follows: * diff --git a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellXmr.java b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellXmr.java index 07739a7..92f0944 100644 --- a/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellXmr.java +++ b/java-examples/src/main/java/bisq/bots/TakeBestPricedOfferToSellXmr.java @@ -48,7 +48,7 @@ import static protobuf.OfferDirection.BUY; * * the offer's BTC amount is between 0.50 and 1.00 BTC * the offer maker is one of two preferred trading peers - * the current transaction mining fee rate is below 15 sats / byte + * the current transaction mining fee rate is less than or equal 15 sats / byte * * The bot configurations for these rules are set in TakeBestPricedOfferToSellXmr.properties as follows: *