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

     1  // Needed to proto2 rather than proto3 to get pointer field for PermArg
     2  syntax = 'proto3';
     3  
     4  option go_package = "github.com/hyperledger/burrow/acm/balance";
     5  
     6  import "github.com/gogo/protobuf/gogoproto/gogo.proto";
     7  
     8  package balance;
     9  
    10  option (gogoproto.marshaler_all) = true;
    11  option (gogoproto.unmarshaler_all) = true;
    12  option (gogoproto.sizer_all) = true;
    13  option (gogoproto.goproto_registration) = true;
    14  option (gogoproto.messagename_all) = true;
    15  
    16  message Balance {
    17      option (gogoproto.goproto_sizecache) = false;
    18      option (gogoproto.goproto_unkeyed) = false;
    19      option (gogoproto.goproto_stringer) = false;
    20      uint32 Type = 1 [(gogoproto.casttype) = "Type"];
    21      uint64 Amount = 2;
    22  }