diff options
| author | Gavin Andresen <[email protected]> | 2013-01-29 19:22:01 -0800 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-01-29 19:22:01 -0800 |
| commit | 716c35b67f042a6604fd5136b758135bdf80a31e (patch) | |
| tree | 57a69e9ed6cccb86d87bbc1a4477b422851107a5 | |
| parent | Merge pull request #2231 from sipa/cleanups (diff) | |
| parent | Fix two clang3.3 warnings (diff) | |
| download | discoin-716c35b67f042a6604fd5136b758135bdf80a31e.tar.xz discoin-716c35b67f042a6604fd5136b758135bdf80a31e.zip | |
Merge pull request #2235 from gavinandresen/clangwarnings
Fix two clang3.3 warnings
| -rw-r--r-- | src/main.cpp | 9 | ||||
| -rw-r--r-- | src/main.h | 2 |
2 files changed, 1 insertions, 10 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) { diff --git a/src/main.h b/src/main.h index 9dbcac0b5..202708f8c 100644 --- a/src/main.h +++ b/src/main.h @@ -106,7 +106,7 @@ static const uint64 nMinDiskSpace = 52428800; class CReserveKey; class CCoinsDB; class CBlockTreeDB; -class CDiskBlockPos; +struct CDiskBlockPos; class CCoins; class CTxUndo; class CCoinsView; |