diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-03-14 19:22:11 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-03-14 19:22:11 +0100 |
commit | c3932b32700a210b5fbf36e32bddac604dec9288 (patch) | |
tree | 16616ff839756fce2b18515d91b0375adc30f7b7 /src/wallet/wallet.h | |
parent | 48f39058315c908c360acb596923cbc090119480 (diff) |
List solvability in listunspent output and improve help
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index d009211a92..37a84153b4 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -412,10 +412,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; |