Make the Signer impl require Send + Sync

This is what Ledgeracio needs.
This commit is contained in:
Demi M. Obenour
2020-05-29 19:41:12 -04:00
parent ba4f90cb24
commit 06aa7e2d3b
+1 -1
View File
@@ -148,7 +148,7 @@ where
}
}
impl<T, S, E> Signer<T, S, E> for Box<dyn Signer<T, S, E>>
impl<T, S, E> Signer<T, S, E> for Box<dyn Signer<T, S, E> + Send + Sync>
where
T: System,
S: Encode,