| 212 | bool CheckMinimalPush(const std::vector<uint8_t> &data, opcodetype opcode); |
| 213 | |
| 214 | struct scriptnum_overflow_error : public std::runtime_error { |
| 215 | explicit scriptnum_overflow_error(const std::string &str) |
| 216 | : std::runtime_error(str) {} |
| 217 | }; |
| 218 | |
| 219 | struct scriptnum_encoding_error : public std::runtime_error { |
| 220 | explicit scriptnum_encoding_error(const std::string &str) |
no outgoing calls
no test coverage detected