1b73d36b2c
- error: 'vector' in namespace 'std' does not name a type - add <vector> include in core_io.h - remove <vector> includes from core_read.cpp and core_write.cpp
25 lines
780 B
C++
25 lines
780 B
C++
#ifndef __BITCOIN_CORE_IO_H__
|
|
#define __BITCOIN_CORE_IO_H__
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
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__
|