mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 11:32:21 +00:00
9 lines
145 B
Rust
9 lines
145 B
Rust
#[macro_export]
|
|
macro_rules! assert_error {
|
|
($exp: expr, $err: expr) => {
|
|
if !$exp {
|
|
return Err($err);
|
|
}
|
|
}
|
|
}
|