github.com/line/ostracon@v1.0.10-0.20230328032236-7f20145f065d/proto/ostracon/types/types.proto (about)

     1  syntax = "proto3";
     2  package ostracon.types;
     3  
     4  option go_package = "github.com/line/ostracon/proto/ostracon/types";
     5  
     6  // --------------------------------
     7  
     8  // Entropy represents height-specific complexity and used in proposer-election.
     9  // Entropy contains vrf proof and generated round. The relationship of each field is as follows.
    10  // Entropy.proof = VRFProof(last_proof_hash, current_height, Entropy.round)
    11  message Entropy {
    12    int32 round = 1;
    13    bytes proof = 2;
    14  }