| 1522 | } |
| 1523 | |
| 1524 | static CScript |
| 1525 | ScriptFromHex(const char* hex) |
| 1526 | { |
| 1527 | std::vector<unsigned char> data = ParseHex(hex); |
| 1528 | return CScript(data.begin(), data.end()); |
| 1529 | } |
| 1530 | |
| 1531 | |
| 1532 | BOOST_AUTO_TEST_CASE(script_FindAndDelete) |
no test coverage detected