diff options
| author | Matt Corallo <[email protected]> | 2015-08-08 09:27:19 -0700 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2015-08-08 09:30:53 -0700 |
| commit | d04285430d1b54b3ce3d50ffa67b6098157e7c14 (patch) | |
| tree | 8d162c741dfe8222a293a7eb77d5056804f2bbd3 /src/wallet/wallet.cpp | |
| parent | SQUASH "Add have-pubkey distinction to ISMINE flags" (diff) | |
| download | discoin-d04285430d1b54b3ce3d50ffa67b6098157e7c14.tar.xz discoin-d04285430d1b54b3ce3d50ffa67b6098157e7c14.zip | |
SQUASH "Implement watchonly support in fundrawtransaction"
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 5bc34f9ed..8b7231b6e 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1526,7 +1526,7 @@ void CWallet::AvailableCoins(vector<COutput>& vCoins, bool fOnlyConfirmed, const (!coinControl || !coinControl->HasSelected() || coinControl->fAllowOtherInputs || coinControl->IsSelected((*it).first, i))) vCoins.push_back(COutput(pcoin, i, nDepth, ((mine & ISMINE_SPENDABLE) != ISMINE_NO) || - (coinControl && coinControl->fAllowWatchOnly && (mine & ISMINE_WATCH_PUBKEY) != ISMINE_NO))); + (coinControl && coinControl->fAllowWatchOnly && (mine & ISMINE_WATCH_SOLVABLE) != ISMINE_NO))); } } } |