aboutsummaryrefslogtreecommitdiff
path: root/src/core_write.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core_write.cpp')
-rw-r--r--src/core_write.cpp16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/core_write.cpp b/src/core_write.cpp
index 2eb220779..cd64aabf6 100644
--- a/src/core_write.cpp
+++ b/src/core_write.cpp
@@ -1,12 +1,19 @@
+// Copyright (c) 2009-2014 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 <vector>
#include "core_io.h"
-#include "univalue/univalue.h"
-#include "script.h"
+
+#include "base58.h"
#include "core.h"
+#include "script/script.h"
+#include "script/standard.h"
#include "serialize.h"
+#include "univalue/univalue.h"
#include "util.h"
-#include "base58.h"
+#include "utilmoneystr.h"
+
+#include <boost/foreach.hpp>
using namespace std;
@@ -86,4 +93,3 @@ void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry)
if (hashBlock != 0)
entry.pushKV("blockhash", hashBlock.GetHex());
}
-