diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-10-01 12:56:05 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-01 12:56:11 +0200 |
| commit | a419f82670ea3b94e46d92ab2642d5fdf4d88674 (patch) | |
| tree | cd8bf69737abc43d7ea56e23b44e03ef8d14d310 /src/walletdb.cpp | |
| parent | doc: add make install to build-osx.md and build-unix.md (diff) | |
| parent | remove dead/unused code in walletdb.cpp (diff) | |
| download | discoin-a419f82670ea3b94e46d92ab2642d5fdf4d88674.tar.xz discoin-a419f82670ea3b94e46d92ab2642d5fdf4d88674.zip | |
Merge pull request #5022
c375b5c remove dead/unused code in walletdb.cpp (Philip Kaufmann)
Diffstat (limited to 'src/walletdb.cpp')
| -rw-r--r-- | src/walletdb.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/walletdb.cpp b/src/walletdb.cpp index 67218bf2c..3e5a664a5 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -391,13 +391,6 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, wss.fAnyUnordered = true; pwallet->AddToWallet(wtx, true); - //// debug print - //LogPrintf("LoadWallet %s\n", wtx.GetHash().ToString()); - //LogPrintf(" %12d %s %s %s\n", - // wtx.vout[0].nValue, - // DateTimeStrFormat("%Y-%m-%d %H:%M:%S", wtx.GetBlockTime()), - // wtx.hashBlock.ToString(), - // wtx.mapValue["message"]); } else if (strType == "acentry") { @@ -708,7 +701,6 @@ DBErrors CWalletDB::LoadWallet(CWallet* pwallet) DBErrors CWalletDB::FindWalletTx(CWallet* pwallet, vector<uint256>& vTxHash, vector<CWalletTx>& vWtx) { pwallet->vchDefaultKey = CPubKey(); - CWalletScanState wss; bool fNoncriticalErrors = false; DBErrors result = DB_LOAD_OK; |