Skip to content
Snippets Groups Projects
Verified Commit 4ddc141c authored by Loris Moulin's avatar Loris Moulin
Browse files

feat: make ConfigError and FieldError clonable

parent a8c1feb3
Branches
No related merge requests found
use super::types::ParaId;
#[derive(thiserror::Error, Debug)]
#[derive(thiserror::Error, Debug, Clone)]
pub enum ConfigError<E> {
#[error("relaychain.{0}")]
Relaychain(E),
......@@ -21,7 +21,7 @@ pub enum ConfigError<E> {
Resources(E),
}
#[derive(thiserror::Error, Debug)]
#[derive(thiserror::Error, Debug, Clone)]
pub enum FieldError<E> {
#[error("chain: {0}")]
Chain(E),
......@@ -38,8 +38,8 @@ pub enum FieldError<E> {
#[error("default_command: {0}")]
DefaultCommand(E),
#[error("bootnodes_addresses[{0}]: {1}")]
BootnodesAddress(usize, E),
#[error("bootnodes_addresses[{0}]: '{1}' {2}")]
BootnodesAddress(usize, String, E),
#[error("genesis_wasm_generator: {0}")]
GenesisWasmGenerator(E),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment