diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-09-14 12:43:56 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2014-09-14 12:43:56 +0200 |
commit | 611116d4e31634384e9757befbd5e5a1a80e8cd3 (patch) | |
tree | 58363b3d5f895aaf4124cdd7991b7d08957e808b /src/bitcoin-tx.cpp | |
parent | e5fc6631b9ca452eaacc8f978b3c5ffe2ef38e77 (diff) |
header include cleanup
- ensures alphabetical ordering for includes etc. in source file headers
Diffstat (limited to 'src/bitcoin-tx.cpp')
-rw-r--r-- | src/bitcoin-tx.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index 91525b51c9..2cc4fda9df 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -3,23 +3,24 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "base58.h" -#include "util.h" -#include "utilmoneystr.h" #include "core.h" -#include "main.h" // for MAX_BLOCK_SIZE +#include "core_io.h" #include "keystore.h" +#include "main.h" // for MAX_BLOCK_SIZE #include "script/script.h" #include "script/sign.h" #include "ui_interface.h" // for _(...) #include "univalue/univalue.h" -#include "core_io.h" +#include "util.h" +#include "utilmoneystr.h" #include <stdio.h> -#include <boost/assign/list_of.hpp> + #include <boost/algorithm/string.hpp> +#include <boost/assign/list_of.hpp> -using namespace std; using namespace boost::assign; +using namespace std; static bool fCreateBlank; static map<string,UniValue> registers; |