Drop ParseHashUV in favor of calling ParseHashStr
The one existing call already validates get_str will pass via checkObject.
This commit is contained in:
parent
56f69360dc
commit
abd2678ac1
3 changed files with 1 additions and 10 deletions
|
@ -591,7 +591,7 @@ static void MutateTxSign(CMutableTransaction& tx, const std::string& flagStr)
|
||||||
if (!prevOut.checkObject(types))
|
if (!prevOut.checkObject(types))
|
||||||
throw std::runtime_error("prevtxs internal object typecheck fail");
|
throw std::runtime_error("prevtxs internal object typecheck fail");
|
||||||
|
|
||||||
uint256 txid = ParseHashUV(prevOut["txid"], "txid");
|
uint256 txid = ParseHashStr(prevOut["txid"].get_str(), "txid");
|
||||||
|
|
||||||
int nOut = atoi(prevOut["vout"].getValStr());
|
int nOut = atoi(prevOut["vout"].getValStr());
|
||||||
if (nOut < 0)
|
if (nOut < 0)
|
||||||
|
|
|
@ -22,7 +22,6 @@ CScript ParseScript(const std::string& s);
|
||||||
std::string ScriptToAsmStr(const CScript& script, const bool fAttemptSighashDecode = false);
|
std::string ScriptToAsmStr(const CScript& script, const bool fAttemptSighashDecode = false);
|
||||||
bool DecodeHexTx(CMutableTransaction& tx, const std::string& hex_tx, bool try_no_witness = false, bool try_witness = true);
|
bool DecodeHexTx(CMutableTransaction& tx, const std::string& hex_tx, bool try_no_witness = false, bool try_witness = true);
|
||||||
bool DecodeHexBlk(CBlock&, const std::string& strHexBlk);
|
bool DecodeHexBlk(CBlock&, const std::string& strHexBlk);
|
||||||
uint256 ParseHashUV(const UniValue& v, const std::string& strName);
|
|
||||||
uint256 ParseHashStr(const std::string&, const std::string& strName);
|
uint256 ParseHashStr(const std::string&, const std::string& strName);
|
||||||
std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName);
|
std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName);
|
||||||
|
|
||||||
|
|
|
@ -160,14 +160,6 @@ bool DecodeHexBlk(CBlock& block, const std::string& strHexBlk)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint256 ParseHashUV(const UniValue& v, const std::string& strName)
|
|
||||||
{
|
|
||||||
std::string strHex;
|
|
||||||
if (v.isStr())
|
|
||||||
strHex = v.getValStr();
|
|
||||||
return ParseHashStr(strHex, strName); // Note: ParseHashStr("") throws a runtime_error
|
|
||||||
}
|
|
||||||
|
|
||||||
uint256 ParseHashStr(const std::string& strHex, const std::string& strName)
|
uint256 ParseHashStr(const std::string& strHex, const std::string& strName)
|
||||||
{
|
{
|
||||||
if (!IsHex(strHex)) // Note: IsHex("") is false
|
if (!IsHex(strHex)) // Note: IsHex("") is false
|
||||||
|
|
Loading…
Reference in a new issue