mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 10:34:32 +00:00
remove unused function
This commit is contained in:
parent
129c760180
commit
fbf8e60094
2 changed files with 0 additions and 8 deletions
|
@ -141,7 +141,6 @@ class BitcoinCashWallet extends CoinServiceAPI
|
|||
db: db,
|
||||
getWalletCachedElectrumX: () => cachedElectrumXClient,
|
||||
getNextUnusedChangeAddress: _getUnusedChangeAddresses,
|
||||
getTxCountForAddress: getTxCount,
|
||||
getChainHeight: () async => chainHeight,
|
||||
mnemonic: mnemonicString,
|
||||
mnemonicPassphrase: mnemonicPassphrase,
|
||||
|
|
|
@ -50,9 +50,6 @@ mixin FusionWalletInterface {
|
|||
late final Future<List<Address>> Function({int numberOfAddresses})
|
||||
_getNextUnusedChangeAddresses;
|
||||
late final CachedElectrumX Function() _getWalletCachedElectrumX;
|
||||
late final Future<int> Function({
|
||||
required String address,
|
||||
}) _getTxCountForAddress;
|
||||
late final Future<int> Function() _getChainHeight;
|
||||
|
||||
/// Initializes the FusionWalletInterface mixin.
|
||||
|
@ -65,9 +62,6 @@ mixin FusionWalletInterface {
|
|||
required Future<List<Address>> Function({int numberOfAddresses})
|
||||
getNextUnusedChangeAddress,
|
||||
required CachedElectrumX Function() getWalletCachedElectrumX,
|
||||
required Future<int> Function({
|
||||
required String address,
|
||||
}) getTxCountForAddress,
|
||||
required Future<int> Function() getChainHeight,
|
||||
required Future<String?> mnemonic,
|
||||
required Future<String?> mnemonicPassphrase,
|
||||
|
@ -80,7 +74,6 @@ mixin FusionWalletInterface {
|
|||
_getNextUnusedChangeAddresses = getNextUnusedChangeAddress;
|
||||
_torService = FusionTorService.sharedInstance;
|
||||
_getWalletCachedElectrumX = getWalletCachedElectrumX;
|
||||
_getTxCountForAddress = getTxCountForAddress;
|
||||
_getChainHeight = getChainHeight;
|
||||
_mnemonic = mnemonic;
|
||||
_mnemonicPassphrase = mnemonicPassphrase;
|
||||
|
|
Loading…
Reference in a new issue