github.com/Tri-stone/burrow@v0.25.0/protobuf/rpcdump.proto (about)

     1  syntax = 'proto3';
     2  
     3  package rpcdump;
     4  
     5  option go_package = "github.com/hyperledger/burrow/rpc/rpcdump";
     6  
     7  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
     8  
     9  import "dump.proto";
    10  
    11  option (gogoproto.marshaler_all) = true;
    12  option (gogoproto.unmarshaler_all) = true;
    13  option (gogoproto.sizer_all) = true;
    14  option (gogoproto.goproto_registration) = true;
    15  option (gogoproto.messagename_all) = true;
    16  
    17  service Dump {
    18      rpc GetDump(GetDumpParam) returns (stream dump.Dump);
    19  }
    20  
    21  message GetDumpParam {
    22      uint64 height = 1;
    23  }