CLI: collect and deduplicate signers (#8398) (#8423)

automerge
This commit is contained in:
mergify[bot]
2020-02-24 17:29:34 -08:00
committed by GitHub
parent df813b31c5
commit c375ce1fcd
22 changed files with 2095 additions and 1635 deletions

View File

@ -183,8 +183,8 @@ impl<T> From<T> for Box<dyn Signer>
where
T: Signer + 'static,
{
fn from(keypair_util: T) -> Self {
Box::new(keypair_util)
fn from(signer: T) -> Self {
Box::new(signer)
}
}