Raven Core
3.0.0
P2P Digital Currency
|
#include "core_io.h"
#include "primitives/block.h"
#include "primitives/transaction.h"
#include "script/script.h"
#include "serialize.h"
#include "streams.h"
#include <univalue.h>
#include "util.h"
#include "utilstrencodings.h"
#include "version.h"
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/algorithm/string/split.hpp>
Go to the source code of this file.
Functions | |
CScript | ParseScript (const std::string &s) |
bool | CheckTxScriptsSanity (const CMutableTransaction &tx) |
bool | DecodeHexTx (CMutableTransaction &tx, const std::string &strHexTx, bool fTryNoWitness) |
bool | DecodeHexBlk (CBlock &block, const std::string &strHexBlk) |
uint256 | ParseHashUV (const UniValue &v, const std::string &strName) |
uint256 | ParseHashStr (const std::string &strHex, const std::string &strName) |
std::vector< unsigned char > | ParseHexUV (const UniValue &v, const std::string &strName) |
bool CheckTxScriptsSanity | ( | const CMutableTransaction & | tx | ) |
Definition at line 92 of file core_read.cpp.
bool DecodeHexBlk | ( | CBlock & | block, |
const std::string & | strHexBlk | ||
) |
Definition at line 147 of file core_read.cpp.
bool DecodeHexTx | ( | CMutableTransaction & | tx, |
const std::string & | strHexTx, | ||
bool | fTryNoWitness | ||
) |
Definition at line 112 of file core_read.cpp.
uint256 ParseHashStr | ( | const std::string & | strHex, |
const std::string & | strName | ||
) |
Definition at line 172 of file core_read.cpp.
std::vector<unsigned char> ParseHexUV | ( | const UniValue & | v, |
const std::string & | strName | ||
) |
CScript ParseScript | ( | const std::string & | s | ) |
Definition at line 23 of file core_read.cpp.