From f346e1c6293e102e88cef0b84a16d145067a7e05 Mon Sep 17 00:00:00 2001 From: Bernhard Schuster Date: Wed, 28 Oct 2020 17:20:39 +0100 Subject: [PATCH] add Sync + Send + 'static to Box bound (#7450) Co-authored-by: Bernhard Schuster --- substrate/client/cli/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/client/cli/src/error.rs b/substrate/client/cli/src/error.rs index 48c2ac7ef1..36c963f3e8 100644 --- a/substrate/client/cli/src/error.rs +++ b/substrate/client/cli/src/error.rs @@ -49,7 +49,7 @@ pub enum Error { InvalidListenMultiaddress, /// Application specific error chain sequence forwarder. #[error(transparent)] - Application(#[from] Box), + Application(#[from] Box), /// URI error. #[error("Invalid URI; expecting either a secret URI or a public URI.")] InvalidUri(crypto::PublicError),