Add `Signers` impl for `Vec<Box<dyn Signer>>`

This commit is contained in:
Trent Nelson 2020-09-25 00:02:28 -06:00 committed by mergify[bot]
parent d95bce2600
commit 07dfa37cce
1 changed files with 4 additions and 0 deletions

View File

@ -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!();
}