diff --git a/crypto_plugins/flutter_libepiccash b/crypto_plugins/flutter_libepiccash index 5ae20e71c..516fa886a 160000 --- a/crypto_plugins/flutter_libepiccash +++ b/crypto_plugins/flutter_libepiccash @@ -1 +1 @@ -Subproject commit 5ae20e71c0bb85952866fdd6aa7572438517943e +Subproject commit 516fa886ab5f94bbc32d29e50711bdccc9cbd154 diff --git a/lib/services/coins/epiccash/epiccash_wallet.dart b/lib/services/coins/epiccash/epiccash_wallet.dart index ee0d0aa2a..b57244009 100644 --- a/lib/services/coins/epiccash/epiccash_wallet.dart +++ b/lib/services/coins/epiccash/epiccash_wallet.dart @@ -807,9 +807,7 @@ class EpicCashWallet extends CoinServiceAPI { throw BadEpicHttpAddressException(message: sendTx); } - if (!(receiverAddress.startsWith("http://") || receiverAddress.startsWith("https://"))) { - await putSendToAddresses(sendTx); - } + await putSendToAddresses(sendTx); Logging.instance.log("CONFIRM_RESULT_IS $sendTx", level: LogLevel.Info); @@ -833,6 +831,8 @@ class EpicCashWallet extends CoinServiceAPI { final txCreateResult = decodeData[0]; // //TODO: second problem final transaction = json.decode(txCreateResult as String); + + Logger.print("TX_IS $transaction"); final tx = transaction[0]; final txLogEntry = json.decode(tx as String); final txLogEntryFirst = txLogEntry[0];