impl Signers for Arc<dyn Signer> arrays (#32136)

This commit is contained in:
hana 2023-06-14 17:20:09 -07:00 committed by GitHub
parent 00b5c40122
commit b60d12418f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -67,6 +67,26 @@ impl Signers for [Arc<dyn Signer>] {
default_keypairs_impl!();
}
impl Signers for [Arc<dyn Signer>; 0] {
default_keypairs_impl!();
}
impl Signers for [Arc<dyn Signer>; 1] {
default_keypairs_impl!();
}
impl Signers for [Arc<dyn Signer>; 2] {
default_keypairs_impl!();
}
impl Signers for [Arc<dyn Signer>; 3] {
default_keypairs_impl!();
}
impl Signers for [Arc<dyn Signer>; 4] {
default_keypairs_impl!();
}
impl Signers for Vec<Arc<dyn Signer>> {
default_keypairs_impl!();
}