diff --git a/lib/services/coins/bitcoin/bitcoin_wallet.dart b/lib/services/coins/bitcoin/bitcoin_wallet.dart index 44c600f39..25a74e7b9 100644 --- a/lib/services/coins/bitcoin/bitcoin_wallet.dart +++ b/lib/services/coins/bitcoin/bitcoin_wallet.dart @@ -125,14 +125,16 @@ class BitcoinWallet extends CoinServiceAPI getMnemonicString: () => mnemonicString, getMnemonicPassphrase: () => mnemonicPassphrase, getChainHeight: () => chainHeight, - getCurrentChangeAddress: () => currentChangeAddressP2PKH, + // getCurrentChangeAddress: () => currentChangeAddressP2PKH, + getCurrentChangeAddress: () => currentChangeAddress, estimateTxFee: estimateTxFee, prepareSend: prepareSend, getTxCount: getTxCount, fetchBuildTxData: fetchBuildTxData, refresh: refresh, - checkChangeAddressForTransactions: - _checkP2PKHChangeAddressForTransactions, + checkChangeAddressForTransactions: _checkChangeAddressForTransactions, + // checkChangeAddressForTransactions: + // _checkP2PKHChangeAddressForTransactions, addDerivation: addDerivation, dustLimitP2PKH: DUST_LIMIT_P2PKH, minConfirms: MINIMUM_CONFIRMATIONS,