| 143 | } |
| 144 | |
| 145 | static void RunCreate(const int64_t& num) |
| 146 | { |
| 147 | CheckCreateInt(num); |
| 148 | CScriptNum scriptnum(num); |
| 149 | if (scriptnum.getvch().size() <= CScriptNum::nDefaultMaxNumSize) |
| 150 | CheckCreateVch(num); |
| 151 | else |
| 152 | { |
| 153 | BOOST_CHECK_THROW (CheckCreateVch(num), scriptnum10_error); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | static void RunOperators(const int64_t& num1, const int64_t& num2) |
| 158 | { |
no test coverage detected