mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 20:11:22 +00:00
9 lines
181 B
Rust
9 lines
181 B
Rust
|
#[macro_use]
|
||
|
macro_rules! ensure {
|
||
|
($condition: expr, $result: ident) => {
|
||
|
if !$condition {
|
||
|
return Err(Error::Invalid(Invalid::$result));
|
||
|
}
|
||
|
};
|
||
|
}
|