From c97ca852f5c4765206a61efe7a6a11e9fbae90d9 Mon Sep 17 00:00:00 2001
From: woodser <woodser@protonmail.com>
Date: Fri, 15 Jul 2022 12:18:13 -0400
Subject: [PATCH] remove btc fee rate from footer

---
 core/src/main/java/bisq/core/app/WalletAppSetup.java | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/core/src/main/java/bisq/core/app/WalletAppSetup.java b/core/src/main/java/bisq/core/app/WalletAppSetup.java
index 7b9d517f..49aa20a7 100644
--- a/core/src/main/java/bisq/core/app/WalletAppSetup.java
+++ b/core/src/main/java/bisq/core/app/WalletAppSetup.java
@@ -135,10 +135,8 @@ public class WalletAppSetup {
                         if (percentage == 1) {
                             String synchronizedWith = Res.get("mainView.footer.btcInfo.synchronizedWith",
                                     getBtcNetworkAsString(), chainHeightAsString);
-                            String info = feeService.isFeeAvailable() ?
-                                    Res.get("mainView.footer.btcFeeRate", feeService.getTxFeePerVbyte().value) :
-                                    "";
-                            result = Res.get("mainView.footer.btcInfo", synchronizedWith, info);
+                            String feeInfo = ""; // TODO: feeService.isFeeAvailable() returns true, disable
+                            result = Res.get("mainView.footer.btcInfo", synchronizedWith, feeInfo);
                             getBtcSplashSyncIconId().set("image-connection-synced");
                             downloadCompleteHandler.run();
                         } else if (percentage > 0.0) {