aboutsummaryrefslogtreecommitdiff
path: root/src/script.cpp
diff options
context:
space:
mode:
authorfcicq <fcicq@fcicq.net>2013-05-05 13:35:51 +0800
committerfcicq <fcicq@fcicq.net>2013-07-17 16:50:51 +0800
commitc391f9a47be89235488104d1ec30ae5bc403f84a (patch)
treefebf574ba6628a08c5424a3bde2a50a0a9a3d028 /src/script.cpp
parenteb8397a03e7f68db1c4505c865516979c0e2e29f (diff)
downloadbitcoin-c391f9a47be89235488104d1ec30ae5bc403f84a.tar.xz
Fix boost uint type bug by reordering the includes
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/script.cpp b/src/script.cpp
index 14fe80e207..19d046a6ad 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -2,12 +2,6 @@
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// 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 "core.h"
#include "keystore.h"
@@ -16,6 +10,12 @@ using namespace boost;
#include "sync.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);