From dc9e4d2dc140565f31076116c9e0f511e849b39f Mon Sep 17 00:00:00 2001 From: julian Date: Fri, 12 Jan 2024 17:16:15 -0600 Subject: [PATCH] dogecoin tx v2 flag --- lib/wallets/wallet/impl/dogecoin_wallet.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/wallets/wallet/impl/dogecoin_wallet.dart b/lib/wallets/wallet/impl/dogecoin_wallet.dart index fa22803a9..bfab719c6 100644 --- a/lib/wallets/wallet/impl/dogecoin_wallet.dart +++ b/lib/wallets/wallet/impl/dogecoin_wallet.dart @@ -17,6 +17,9 @@ class DogecoinWallet extends Bip39HDWallet with ElectrumXInterface, CoinControlInterface { DogecoinWallet(CryptoCurrencyNetwork network) : super(Dogecoin(network)); + @override + int get isarTransactionVersion => 2; + @override FilterOperation? get changeAddressFilterOperation => FilterGroup.and(standardChangeAddressFilters);