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