| 1309 | } |
| 1310 | |
| 1311 | static CScript |
| 1312 | ScriptFromHex(const char* hex) |
| 1313 | { |
| 1314 | std::vector<unsigned char> data = ParseHex(hex); |
| 1315 | return CScript(data.begin(), data.end()); |
| 1316 | } |
| 1317 | |
| 1318 | |
| 1319 | BOOST_AUTO_TEST_CASE(script_FindAndDelete) |
no test coverage detected