aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-01-29 22:24:35 -0500
committerGavin Andresen <[email protected]>2013-01-29 22:24:35 -0500
commit299808300504159e8bf108581add76b5ce4d32cd (patch)
tree633f968955f13b1d98efa7fe51ac450870e32961 /src/main.cpp
parentUtility to create pnSeed array (diff)
parentMerge pull request #2235 from gavinandresen/clangwarnings (diff)
downloaddiscoin-299808300504159e8bf108581add76b5ce4d32cd.tar.xz
discoin-299808300504159e8bf108581add76b5ce4d32cd.zip
Merge branch 'master' of github.com:bitcoin/bitcoin
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main.cpp b/src/main.cpp
index fe35fbaf2..e9e7b004c 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -93,15 +93,6 @@ void UnregisterWallet(CWallet* pwalletIn)
}
}
-// check whether the passed transaction is from us
-bool static IsFromMe(CTransaction& tx)
-{
- BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
- if (pwallet->IsFromMe(tx))
- return true;
- return false;
-}
-
// get the wallet transaction with the given hash (if it exists)
bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
{