diff options
| author | Philip Kaufmann <[email protected]> | 2014-09-16 15:18:33 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-09-18 07:21:49 +0200 |
| commit | 93f84d0417e8e1c590b405bde6e153b413bd43f2 (patch) | |
| tree | 76845cdeb266c172ed97ddf1d81fcdffc1938cdd /src/walletdb.cpp | |
| parent | prefer const string& over char* in CDB and CWalletDB constructor (diff) | |
| download | discoin-93f84d0417e8e1c590b405bde6e153b413bd43f2.tar.xz discoin-93f84d0417e8e1c590b405bde6e153b413bd43f2.zip | |
cleanup class private and public areas in walletdb
- only code movement
Diffstat (limited to 'src/walletdb.cpp')
| -rw-r--r-- | src/walletdb.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/walletdb.cpp b/src/walletdb.cpp index 03161250d..a84f44db0 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -242,9 +242,7 @@ void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountin pcursor->close(); } - -DBErrors -CWalletDB::ReorderTransactions(CWallet* pwallet) +DBErrors CWalletDB::ReorderTransactions(CWallet* pwallet) { LOCK(pwallet->cs_wallet); // Old wallets didn't have any defined order for transactions |