List solvability in listunspent output and improve help

This commit is contained in:
Pieter Wuille
2016-03-14 19:22:11 +01:00
parent 48f3905831
commit c3932b3270
5 changed files with 14 additions and 8 deletions

View File

@@ -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;