github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/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 "gogoproto/gogo.proto"; 8 9 import "dump.proto"; 10 11 option (gogoproto.marshaler_all) = true; 12 option (gogoproto.unmarshaler_all) = true; 13 option (gogoproto.stable_marshaler_all) = true; 14 option (gogoproto.sizer_all) = true; 15 option (gogoproto.goproto_registration) = true; 16 option (gogoproto.messagename_all) = true; 17 18 service Dump { 19 rpc GetDump(GetDumpParam) returns (stream dump.Dump); 20 } 21 22 message GetDumpParam { 23 uint64 height = 1; 24 }