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); } }