Add `Signers` impl for `Vec<Box<dyn Signer>>`
This commit is contained in:
parent
d95bce2600
commit
07dfa37cce
|
@ -48,6 +48,10 @@ impl Signers for [Box<dyn Signer>] {
|
|||
default_keypairs_impl!();
|
||||
}
|
||||
|
||||
impl Signers for Vec<Box<dyn Signer>> {
|
||||
default_keypairs_impl!();
|
||||
}
|
||||
|
||||
impl Signers for Vec<&dyn Signer> {
|
||||
default_keypairs_impl!();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue