lighthouse/eth2/state_processing/src/macros.rs

9 lines
181 B
Rust
Raw Normal View History

#[macro_use]
macro_rules! ensure {
($condition: expr, $result: ident) => {
if !$condition {
return Err(Error::Invalid(Invalid::$result));
}
};
}