Add Signers impl for Vec<Box<dyn Signer>> (#12470)

(cherry picked from commit 07dfa37cce)

Co-authored-by: Trent Nelson <trent@solana.com>
This commit is contained in:
mergify[bot]
2020-09-25 10:45:29 +00:00
committed by GitHub
parent 64b6372f9c
commit 21ba2bad24

View File

@ -48,6 +48,10 @@ impl Signers for [Box<dyn Signer>] {
default_keypairs_impl!(); default_keypairs_impl!();
} }
impl Signers for Vec<Box<dyn Signer>> {
default_keypairs_impl!();
}
impl Signers for Vec<&dyn Signer> { impl Signers for Vec<&dyn Signer> {
default_keypairs_impl!(); default_keypairs_impl!();
} }