From 9907d8f5f82c9b2ab08fd0fc42e4e2a0aefd61ab Mon Sep 17 00:00:00 2001 From: ghubstan <36207203+ghubstan@users.noreply.github.com> Date: Fri, 1 Jul 2022 16:00:17 -0300 Subject: [PATCH] Fix javadoc about maximum tx fee rate constraint --- .../src/main/java/bisq/bots/TakeBestPricedOfferToBuyBsq.java | 2 +- .../src/main/java/bisq/bots/TakeBestPricedOfferToBuyBtc.java | 2 +- .../src/main/java/bisq/bots/TakeBestPricedOfferToBuyXmr.java | 2 +- .../src/main/java/bisq/bots/TakeBestPricedOfferToSellBtc.java | 2 +- .../src/main/java/bisq/bots/TakeBestPricedOfferToSellXmr.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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: *