// Copyright (c) The Libra Core Contributors // SPDX-License-Identifier: Apache-2.0 syntax = "proto3"; package types; // Protobuf definition for the Rust struct ValidatorPublicKeys message ValidatorPublicKeys { // Validator account address bytes account_address = 1; // Consensus public key bytes consensus_public_key = 2; // Network signing publick key bytes network_signing_public_key = 3; /// Network identity publick key bytes network_identity_public_key = 4; }