mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 08:17:57 +00:00
remove btc fee rate from footer
This commit is contained in:
parent
588270678c
commit
c97ca852f5
1 changed files with 2 additions and 4 deletions
|
@ -135,10 +135,8 @@ public class WalletAppSetup {
|
||||||
if (percentage == 1) {
|
if (percentage == 1) {
|
||||||
String synchronizedWith = Res.get("mainView.footer.btcInfo.synchronizedWith",
|
String synchronizedWith = Res.get("mainView.footer.btcInfo.synchronizedWith",
|
||||||
getBtcNetworkAsString(), chainHeightAsString);
|
getBtcNetworkAsString(), chainHeightAsString);
|
||||||
String info = feeService.isFeeAvailable() ?
|
String feeInfo = ""; // TODO: feeService.isFeeAvailable() returns true, disable
|
||||||
Res.get("mainView.footer.btcFeeRate", feeService.getTxFeePerVbyte().value) :
|
result = Res.get("mainView.footer.btcInfo", synchronizedWith, feeInfo);
|
||||||
"";
|
|
||||||
result = Res.get("mainView.footer.btcInfo", synchronizedWith, info);
|
|
||||||
getBtcSplashSyncIconId().set("image-connection-synced");
|
getBtcSplashSyncIconId().set("image-connection-synced");
|
||||||
downloadCompleteHandler.run();
|
downloadCompleteHandler.run();
|
||||||
} else if (percentage > 0.0) {
|
} else if (percentage > 0.0) {
|
||||||
|
|
Loading…
Reference in a new issue