| 3047 | } |
| 3048 | |
| 3049 | static CScript ScriptFromHex(const char *hex) { |
| 3050 | std::vector<uint8_t> data = ParseHex(hex); |
| 3051 | return CScript(data.begin(), data.end()); |
| 3052 | } |
| 3053 | |
| 3054 | BOOST_AUTO_TEST_CASE(script_FindAndDelete) { |
| 3055 | // Exercise the FindAndDelete functionality |
no test coverage detected