mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-06 11:02:20 +00:00
11 lines
181 B
Rust
11 lines
181 B
Rust
// generates error types
|
|
use eth2_libp2p;
|
|
|
|
use error_chain::error_chain;
|
|
|
|
error_chain! {
|
|
links {
|
|
Libp2p(eth2_libp2p::error::Error, eth2_libp2p::error::ErrorKind);
|
|
}
|
|
}
|