diff options
| author | gavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-11-30 18:58:11 +0000 |
|---|---|---|
| committer | gavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-11-30 18:58:11 +0000 |
| commit | bfd471f53e14c4218ae7a1544beb7f1de3e695b2 (patch) | |
| tree | ce973160466913efe4a091eb47da3e1f8b90f388 /main.cpp | |
| parent | added boost tuples to serialize.h (diff) | |
| download | discoin-bfd471f53e14c4218ae7a1544beb7f1de3e695b2.tar.xz discoin-bfd471f53e14c4218ae7a1544beb7f1de3e695b2.zip | |
JSON methods: listtransactions, gettransaction, move, sendfrom and getbalance <account>
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@193 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3492,7 +3492,7 @@ int64 GetBalance() CWalletTx* pcoin = &(*it).second; if (!pcoin->IsFinal() || pcoin->fSpent || !pcoin->IsConfirmed()) continue; - nTotal += pcoin->GetCredit(true); + nTotal += pcoin->GetCredit(); } } |