From 3466f4cdd3f0c3e1e43e95f30521ecad67b1c0b6 Mon Sep 17 00:00:00 2001 From: julian Date: Mon, 30 Oct 2023 09:48:05 -0600 Subject: [PATCH] fix import --- lib/wallets/crypto_currency/coins/epiccash.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/wallets/crypto_currency/coins/epiccash.dart b/lib/wallets/crypto_currency/coins/epiccash.dart index eb8d50682..796b37b29 100644 --- a/lib/wallets/crypto_currency/coins/epiccash.dart +++ b/lib/wallets/crypto_currency/coins/epiccash.dart @@ -1,7 +1,7 @@ +import 'package:flutter_libepiccash/lib.dart' as epic; import 'package:stackwallet/utilities/enums/coin_enum.dart'; import 'package:stackwallet/wallets/crypto_currency/bip39_currency.dart'; import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart'; -import 'package:stackwallet/wallets/example/libepiccash.dart'; class Epiccash extends Bip39Currency { Epiccash(super.network) { @@ -30,6 +30,6 @@ class Epiccash extends Bip39Currency { } } - return LibEpiccash.validateSendAddress(address: address); + return epic.LibEpiccash.validateSendAddress(address: address); } }