| 99 | } |
| 100 | |
| 101 | static bool ParseHashStr(const string& strReq, uint256& v) |
| 102 | { |
| 103 | if (!IsHex(strReq) || (strReq.size() != 64)) |
| 104 | return false; |
| 105 | |
| 106 | v.SetHex(strReq); |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | static bool CheckWarmup(HTTPRequest* req) |
| 111 | { |
no test coverage detected