diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2013-08-24 20:19:24 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2013-08-24 20:19:24 -0700 |
commit | 3d86e7cd48f8a25a8f1b63a2e8220b56eb1f7b11 (patch) | |
tree | b584599e7e2e3249b6da7192998f17e0dffd7fb4 /src/script.cpp | |
parent | 750ae29664d0e1fd50df464790d8e6aaa666946a (diff) | |
parent | 98148a713e6e671f1d993ce4dc7aa4654b4beaff (diff) |
Merge pull request #2618 from fcicq/solaris-support
Partial solaris support
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/script.cpp b/src/script.cpp index 2df2e9f0d5..2225ef1665 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); |