-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98608b7
commit fd1120e
Showing
5 changed files
with
730 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
pub mod v1; | ||
mod v1; | ||
|
||
#[allow(unused_imports)] | ||
pub use v1::{ | ||
lister_client::ListerClient, Account, DistributedAccount, ListAccountsRequest, | ||
ListAccountsResponse, ResponseState, | ||
}; | ||
/// Re-exported protobuf API for the ETH2 remote signer service. | ||
pub mod eth2_signer_api { | ||
|
||
#[allow(unused_imports)] | ||
pub use super::v1::{ | ||
lister_client::ListerClient, sign_request::Id as SignRequestId, | ||
signer_client::SignerClient, Account, DistributedAccount, ListAccountsRequest, | ||
ListAccountsResponse, ResponseState, SignRequest, SignResponse, | ||
}; | ||
} |
Oops, something went wrong.