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