ghost-eye/src/types/macros.rs
Uncle Stretch b1d7add8a3
initial ghost-eye sketches with basic functionality
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2024-11-14 15:46:38 +03:00

15 lines
368 B
Rust

#[macro_export]
macro_rules! rpc_params {
($($param:expr),*) => {{
use crate::types::params::RpcParams;
let mut params = RpcParams::new();
$(
if let Err(err) = params.insert($param) {
panic!("parameter `{}` cannot be serialized: {:?}", stringify!($param), err);
}
)*
params
}}
}