| 1096 | } |
| 1097 | |
| 1098 | static CScript |
| 1099 | ScriptFromHex(const char* hex) |
| 1100 | { |
| 1101 | std::vector<unsigned char> data = ParseHex(hex); |
| 1102 | return CScript(data.begin(), data.end()); |
| 1103 | } |
| 1104 | |
| 1105 | |
| 1106 | BOOST_AUTO_TEST_CASE(script_FindAndDelete) |
no test coverage detected