Fix boost uint type bug by reordering the includes

This commit is contained in:
fcicq 2013-05-05 13:35:51 +08:00
parent eb8397a03e
commit c391f9a47b
1 changed files with 6 additions and 6 deletions

View File

@ -2,12 +2,6 @@
// Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying // Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <boost/foreach.hpp>
#include <boost/tuple/tuple.hpp>
using namespace std;
using namespace boost;
#include "script.h" #include "script.h"
#include "core.h" #include "core.h"
#include "keystore.h" #include "keystore.h"
@ -16,6 +10,12 @@ using namespace boost;
#include "sync.h" #include "sync.h"
#include "util.h" #include "util.h"
#include <boost/foreach.hpp>
#include <boost/tuple/tuple.hpp>
using namespace std;
using namespace boost;
bool CheckSig(vector<unsigned char> vchSig, const vector<unsigned char> &vchPubKey, const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType, int flags); bool CheckSig(vector<unsigned char> vchSig, const vector<unsigned char> &vchPubKey, const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType, int flags);