| 133 | return result; |
| 134 | } |
| 135 | uint256 ParseHashO(const Object& o, string strKey) { |
| 136 | return ParseHashV(find_value(o, strKey), strKey); |
| 137 | } |
| 138 | vector<unsigned char> ParseHexV(const Value& v, string strName) { |
| 139 | string strHex; |
| 140 | if (v.type() == str_type) strHex = v.get_str(); |
nothing calls this directly
no test coverage detected