aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-04-25 14:45:45 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-04-25 14:46:29 +0200
commit46880ed2fd961c29b5fe4f841c747951bc706912 (patch)
tree0cd98d12ed1f7c3c5eae078c4a0f16b5abcd76ae /src/wallet/wallet.h
parentc4e8390047a1ba14e32ac4f3e3ac425eb5824f21 (diff)
parentc3932b32700a210b5fbf36e32bddac604dec9288 (diff)
downloadbitcoin-46880ed2fd961c29b5fe4f841c747951bc706912.tar.xz
Merge #7688: List solvability in listunspent output and improve help
c3932b3 List solvability in listunspent output and improve help (Pieter Wuille)
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index fa8740eb7f..c3bd343edd 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -414,10 +414,11 @@ public:
int i;
int nDepth;
bool fSpendable;
+ bool fSolvable;
- COutput(const CWalletTx *txIn, int iIn, int nDepthIn, bool fSpendableIn)
+ COutput(const CWalletTx *txIn, int iIn, int nDepthIn, bool fSpendableIn, bool fSolvableIn)
{
- tx = txIn; i = iIn; nDepth = nDepthIn; fSpendable = fSpendableIn;
+ tx = txIn; i = iIn; nDepth = nDepthIn; fSpendable = fSpendableIn; fSolvable = fSolvableIn;
}
std::string ToString() const;