plonky2/evm/src/cpu/kernel/prover_input.rs

9 lines
191 B
Rust
Raw Normal View History

2022-07-23 11:16:45 +02:00
#[derive(PartialEq, Eq, Debug, Clone)]
pub(crate) struct ProverInputFn(Vec<String>);
impl From<Vec<String>> for ProverInputFn {
fn from(v: Vec<String>) -> Self {
Self(v)
}
}