bitcoin-fuzz 0.1.16-alpha.0

contains the bitcoin fuzz tests
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
crate::ix!();

//-------------------------------------------[.cpp/bitcoin/src/test/fuzz/parse_script.cpp]

#[fuzz_test] fn parse_script() {
    todo!();
    /*
    
        const std::string script_string(buffer.begin(), buffer.end());
        try {
            (c_void)ParseScript(script_string);
        } catch (const std::runtime_error&) {
        }

    */
}