| 17 | #include <vector> |
| 18 | |
| 19 | void initialize_script_sigcache() |
| 20 | { |
| 21 | static const ECCVerifyHandle ecc_verify_handle; |
| 22 | ECC_Start(); |
| 23 | SelectParams(CBaseChainParams::REGTEST); |
| 24 | InitSignatureCache(); |
| 25 | } |
| 26 | |
| 27 | FUZZ_TARGET_INIT(script_sigcache, initialize_script_sigcache) |
| 28 | { |
nothing calls this directly
no test coverage detected