Dash Core Source Documentation (0.16.0.1)
Find detailed information regarding the Dash Core source code.
core_read.cpp
Go to the documentation of this file.
48 boost::algorithm::split(words, s, boost::algorithm::is_any_of(" \t\n"), boost::algorithm::token_compress_on);
57 (boost::algorithm::starts_with(*w, "-") && all(std::string(w->begin()+1, w->end()), boost::algorithm::is_digit())))
63 else if (boost::algorithm::starts_with(*w, "0x") && (w->begin()+2 != w->end()) && IsHex(std::string(w->begin()+2, w->end())))
69 else if (w->size() >= 2 && boost::algorithm::starts_with(*w, "'") && boost::algorithm::ends_with(*w, "'"))
std::vector< unsigned char > ParseHexUV(const UniValue &v, const std::string &strName)
Definition: core_read.cpp:144
Definition: block.h:72
Definition: univalue.h:20
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:103
Definition: script.h:77
uint256 ParseHashStr(const std::string &strHex, const std::string &strName)
Definition: core_read.cpp:134
bool DecodeHexTx(CMutableTransaction &tx, const std::string &strHexTx)
Definition: core_read.cpp:90
Definition: script.h:57
uint256 ParseHashUV(const UniValue &v, const std::string &strName)
Definition: core_read.cpp:126
Definition: serialize.h:160
bool DecodeHexBlk(CBlock &block, const std::string &strHexBlk)
Definition: core_read.cpp:109