diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-06-02 02:35:48 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-06-02 02:35:48 -0700 |
commit | 882ba0e7524b54be861b379366b5845a3978b256 (patch) | |
tree | 9a14251a5ef6b87e2fd63019b2287dbbad3e9528 /src/wallet.h | |
parent | 88d7bc930a5834fe41f26af183e512bb34672dab (diff) | |
parent | 8fdb7e108fbe77010799c8de95453a327dfa5777 (diff) |
Merge pull request #837 from sje397/ShowImmatureBalance
Added 'immature balance' for miners. Only displayed if the balance is > 0
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet.h b/src/wallet.h index 618a00623a..dfdb7b8257 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -144,6 +144,7 @@ public: void ResendWalletTransactions(); int64 GetBalance() const; int64 GetUnconfirmedBalance() const; + int64 GetImmatureBalance() const; bool CreateTransaction(const std::vector<std::pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet); bool CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet); bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey); |