mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-24 15:21:33 +00:00
Minor fix for concat_comma (#464)
This commit is contained in:
@ -70,6 +70,9 @@ macro_rules! concat_comma {
|
||||
($first:expr, $($rest:expr),*) => (
|
||||
concat!($first $(, ',', $rest)*)
|
||||
);
|
||||
($elem:expr) => (
|
||||
$elem
|
||||
);
|
||||
}
|
||||
|
||||
// TODO: there's no library in the Rust ecosystem that supports P-521, but the Go & JS
|
||||
|
Reference in New Issue
Block a user