Merge pull request #4911

611116d header include cleanup (Philip Kaufmann)
This commit is contained in:
Pieter Wuille
2014-09-16 04:06:33 +02:00
36 changed files with 66 additions and 47 deletions

View File

@@ -3,8 +3,9 @@
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "core.h"
#include "txmempool.h"
#include "core.h"
#include "util.h"
#include <boost/circular_buffer.hpp>
@@ -646,4 +647,3 @@ bool CCoinsViewMemPool::GetCoins(const uint256 &txid, CCoins &coins) const {
bool CCoinsViewMemPool::HaveCoins(const uint256 &txid) const {
return mempool.exists(txid) || base->HaveCoins(txid);
}