Skip to content

Commit 563cfc5

Browse files
committed
[Wallet] Remove BDAP filter in Available Coins method
1 parent e44ae98 commit 563cfc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/wallet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2908,8 +2908,8 @@ void CWallet::AvailableCoins(std::vector<COutput>& vCoins, bool fOnlyConfirmed,
29082908
if (!found)
29092909
continue;
29102910

2911-
if (pcoin->tx->vout[i].IsBDAP())
2912-
continue;
2911+
//if (pcoin->tx->vout[i].IsBDAP())
2912+
// continue;
29132913

29142914
isminetype mine = IsMine(pcoin->tx->vout[i]);
29152915
if (!(IsSpent(wtxid, i)) && mine != ISMINE_NO &&

0 commit comments

Comments
 (0)