prysm-pulse/proto/cluster/services.proto
Preston Van Loon 2148a83b02
Update cluster pk manager to assign multiple keys to validators (#2112)
* checkpoint

* move lock

* checkpoint

* checkpoint

* chkpt

* update readme so i know what im supposed to do

* ckpt

* checkpoint

* checkpoint

* chkpt

* Fix image build

* handle errors

* add port to pod

* lint

* Update beacon-config.config.yaml

* lint
2019-04-14 17:53:34 -04:00

22 lines
397 B
Protocol Buffer

syntax = "proto3";
package prysm.internal.cluster;
service PrivateKeyService {
rpc Request(PrivateKeyRequest) returns (PrivateKeyResponse);
}
message PrivateKeyRequest {
string pod_name = 1;
uint64 number_of_keys = 2;
}
message PrivateKeyResponse {
bytes private_key = 1 [deprecated=true];
PrivateKeys private_keys = 2;
}
message PrivateKeys {
repeated bytes private_keys = 1;
}