mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-19 22:08:30 +00:00
8 lines
134 B
Rust
8 lines
134 B
Rust
#![no_main]
|
|
#[macro_use] extern crate libfuzzer_sys;
|
|
extern crate ssz;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
// fuzzed code goes here
|
|
});
|