fix import

This commit is contained in:
julian 2023-10-30 09:48:05 -06:00
parent 1eea37c54c
commit 3466f4cdd3

View file

@ -1,7 +1,7 @@
import 'package:flutter_libepiccash/lib.dart' as epic;
import 'package:stackwallet/utilities/enums/coin_enum.dart'; import 'package:stackwallet/utilities/enums/coin_enum.dart';
import 'package:stackwallet/wallets/crypto_currency/bip39_currency.dart'; import 'package:stackwallet/wallets/crypto_currency/bip39_currency.dart';
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart'; import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
import 'package:stackwallet/wallets/example/libepiccash.dart';
class Epiccash extends Bip39Currency { class Epiccash extends Bip39Currency {
Epiccash(super.network) { Epiccash(super.network) {
@ -30,6 +30,6 @@ class Epiccash extends Bip39Currency {
} }
} }
return LibEpiccash.validateSendAddress(address: address); return epic.LibEpiccash.validateSendAddress(address: address);
} }
} }