Helpers:
| 17 | |
| 18 | // Helpers: |
| 19 | static std::vector<unsigned char> |
| 20 | Serialize(const CScript& s) |
| 21 | { |
| 22 | std::vector<unsigned char> sSerialized(s.begin(), s.end()); |
| 23 | return sSerialized; |
| 24 | } |
| 25 | |
| 26 | BOOST_FIXTURE_TEST_SUITE(sigopcount_tests, BasicTestingSetup) |
| 27 |
no test coverage detected