aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2013-10-19 17:30:11 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2013-10-26 14:49:47 +0200
commite010af7089b18af838b74a4dc7908885c1600d13 (patch)
tree61a8eb728c2707d7e38015f7af2a5998d14e4b7b /src/wallet.cpp
parentfe5234645036178a540fdd4166b26493b0b40529 (diff)
downloadbitcoin-e010af7089b18af838b74a4dc7908885c1600d13.tar.xz
Remove broken PrintWallet functionality
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index e37a835782..24813c54ec 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -1485,19 +1485,6 @@ bool CWallet::DelAddressBook(const CTxDestination& address)
return CWalletDB(strWalletFile).EraseName(CBitcoinAddress(address).ToString());
}
-void CWallet::PrintWallet(const CBlock& block)
-{
- {
- LOCK(cs_wallet);
- if (mapWallet.count(block.vtx[0].GetHash()))
- {
- CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
- LogPrintf(" mine: %d %d %"PRI64d"", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
- }
- }
- LogPrintf("\n");
-}
-
bool CWallet::SetDefaultKey(const CPubKey &vchPubKey)
{
if (fFileBacked)