From be14e39d8b6816e2349dfec0ca4523ef0599fde3 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Tue, 29 Nov 2022 12:54:54 -0600 Subject: [PATCH] update secure storage interface --- lib/services/coins/particl/particl_wallet.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/services/coins/particl/particl_wallet.dart b/lib/services/coins/particl/particl_wallet.dart index 1ad195a04..1981c4896 100644 --- a/lib/services/coins/particl/particl_wallet.dart +++ b/lib/services/coins/particl/particl_wallet.dart @@ -1301,7 +1301,7 @@ class ParticlWallet extends CoinServiceAPI { CachedElectrumX get cachedElectrumXClient => _cachedElectrumXClient; - late FlutterSecureStorageInterface _secureStore; + late SecureStorageInterface _secureStore; late PriceAPI _priceAPI; @@ -1313,7 +1313,7 @@ class ParticlWallet extends CoinServiceAPI { required CachedElectrumX cachedClient, required TransactionNotificationTracker tracker, PriceAPI? priceAPI, - FlutterSecureStorageInterface? secureStore, + SecureStorageInterface? secureStore, }) { txTracker = tracker; _walletId = walletId;