aboutsummaryrefslogtreecommitdiff
path: root/src/core_io.h
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@bitpay.com>2014-07-30 23:17:19 -0400
committerJeff Garzik <jgarzik@bitpay.com>2014-07-30 23:17:19 -0400
commita715a643bcda579c324b2c1d2dac449a320951c9 (patch)
tree661781f5c7626ebc89be71311699b08483d4cb86 /src/core_io.h
parente8cb5c30b0db15a1c6786d6575098a66320ffec4 (diff)
parentcbe39a38526a6c17619d02cc697b80ebfd57203b (diff)
downloadbitcoin-a715a643bcda579c324b2c1d2dac449a320951c9.tar.xz
Merge branch 'rawtx' into merge-rawtx
Diffstat (limited to 'src/core_io.h')
-rw-r--r--src/core_io.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/core_io.h b/src/core_io.h
new file mode 100644
index 0000000000..8a7d580570
--- /dev/null
+++ b/src/core_io.h
@@ -0,0 +1,23 @@
+#ifndef __BITCOIN_CORE_IO_H__
+#define __BITCOIN_CORE_IO_H__
+
+#include <string>
+
+class uint256;
+class CScript;
+class CTransaction;
+class UniValue;
+
+// core_read.cpp
+extern CScript ParseScript(std::string s);
+extern bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx);
+extern uint256 ParseHashUV(const UniValue& v, const std::string& strName);
+extern std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName);
+
+// core_write.cpp
+extern std::string EncodeHexTx(const CTransaction& tx);
+extern void ScriptPubKeyToUniv(const CScript& scriptPubKey,
+ UniValue& out, bool fIncludeHex);
+extern void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry);
+
+#endif // __BITCOIN_CORE_IO_H__