From 4bdda9354c6629c6726e9995d12e05055c764360 Mon Sep 17 00:00:00 2001 From: likho Date: Sat, 22 Jul 2023 09:47:59 +0200 Subject: [PATCH] WIP: Clean up and fixes --- lib/services/coins/stellar/stellar_wallet.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/services/coins/stellar/stellar_wallet.dart b/lib/services/coins/stellar/stellar_wallet.dart index af7399896..b629b56ef 100644 --- a/lib/services/coins/stellar/stellar_wallet.dart +++ b/lib/services/coins/stellar/stellar_wallet.dart @@ -228,7 +228,8 @@ class StellarWallet extends CoinServiceAPI (await _currentReceivingAddress)?.value ?? await getAddressSW(); Future getBaseFee() async { - final nodeURI = Uri.parse("${getCurrentNode().host}:${getCurrentNode().port}"); + // final nodeURI = Uri.parse("${getCurrentNode().host}:${getCurrentNode().port}"); + final nodeURI = Uri.parse(getCurrentNode().host); final httpClient = http.Client(); FeeStatsResponse fsp = await FeeStatsRequestBuilder(httpClient, nodeURI).execute(); return int.parse(fsp.lastLedgerBaseFee);