diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-06-02 02:35:48 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-06-02 02:35:48 -0700 |
| commit | 882ba0e7524b54be861b379366b5845a3978b256 (patch) | |
| tree | 9a14251a5ef6b87e2fd63019b2287dbbad3e9528 /src/wallet.h | |
| parent | Merge pull request #1368 from Diapolo/verifymessagepage (diff) | |
| parent | Added 'immature balance' for miners. Only displayed if the balance is greater... (diff) | |
| download | discoin-882ba0e7524b54be861b379366b5845a3978b256.tar.xz discoin-882ba0e7524b54be861b379366b5845a3978b256.zip | |
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 618a00623..dfdb7b825 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); |