mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-07 00:42:42 +00:00
Add validator_node, restructure binaries, gRPC.
This is a massive commit which restructures the workspace, adds a very basic, untested, validator client and some very basic, non-functioning gRPC endpoints to the beacon-node.
This commit is contained in:
8
protos/build.rs
Normal file
8
protos/build.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
extern crate protoc_grpcio;
|
||||
|
||||
fn main() {
|
||||
let proto_root = "src/";
|
||||
println!("cargo:rerun-if-changed={}", proto_root);
|
||||
protoc_grpcio::compile_grpc_protos(&["services.proto"], &[proto_root], &proto_root)
|
||||
.expect("Failed to compile gRPC definitions!");
|
||||
}
|
||||
Reference in New Issue
Block a user