diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-31 10:47:52 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-31 10:50:06 +0100 |
commit | a5eb61d9ef18c4add55ea8a1d813c5207ecf12f2 (patch) | |
tree | 8010d86eba8b7180b05d49dfb39f47627bc7a23e /src/core_io.h | |
parent | 639c79a41f4627deb1ad48bbc170c5f8fe6db5d5 (diff) | |
parent | 7f718139191d67da29c5d856d29e035bbc51e659 (diff) |
Merge pull request #5499
7f71813 Bugfix: prioritisetransaction: Do some basic sanity checking on txid (Luke Dashjr)
Diffstat (limited to 'src/core_io.h')
-rw-r--r-- | src/core_io.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core_io.h b/src/core_io.h index e0620e86b6..0989cf7437 100644 --- a/src/core_io.h +++ b/src/core_io.h @@ -19,6 +19,7 @@ extern CScript ParseScript(std::string s); extern bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx); extern bool DecodeHexBlk(CBlock&, const std::string& strHexBlk); extern uint256 ParseHashUV(const UniValue& v, const std::string& strName); +extern uint256 ParseHashStr(const std::string&, const std::string& strName); extern std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName); // core_write.cpp |