Commit 20790723 authored by Sunny Aggarwal's avatar Sunny Aggarwal
Browse files

ran make proto-all

parent 4a3e3c58
Showing with 10 additions and 10 deletions
+10 -10
......@@ -51,7 +51,8 @@ service Query {
option (google.api.http).get =
"/osmosis/incentives/v1beta1/rewards_est/{owner}";
}
rpc LockableDurations(QueryLockableDurationsRequest) returns (QueryLockableDurationsResponse) {
rpc LockableDurations(QueryLockableDurationsRequest)
returns (QueryLockableDurationsResponse) {
option (google.api.http).get =
"/osmosis/incentives/v1beta1/lockable_durations";
}
......
......@@ -11,9 +11,9 @@ import (
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_types "github.com/gogo/protobuf/types"
_ "github.com/golang/protobuf/ptypes/duration"
_ "github.com/golang/protobuf/ptypes/timestamp"
_ "github.com/regen-network/cosmos-proto"
_ "google.golang.org/protobuf/types/known/durationpb"
_ "google.golang.org/protobuf/types/known/timestamppb"
io "io"
math "math"
math_bits "math/bits"
......
......@@ -10,9 +10,9 @@ import (
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_types "github.com/gogo/protobuf/types"
_ "github.com/golang/protobuf/ptypes/duration"
_ "github.com/golang/protobuf/ptypes/timestamp"
types "github.com/osmosis-labs/osmosis/x/lockup/types"
_ "google.golang.org/protobuf/types/known/durationpb"
_ "google.golang.org/protobuf/types/known/timestamppb"
io "io"
math "math"
math_bits "math/bits"
......
......@@ -8,7 +8,7 @@ import (
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_types "github.com/gogo/protobuf/types"
_ "github.com/golang/protobuf/ptypes/duration"
_ "google.golang.org/protobuf/types/known/durationpb"
io "io"
math "math"
math_bits "math/bits"
......
......@@ -13,12 +13,12 @@ import (
grpc1 "github.com/gogo/protobuf/grpc"
proto "github.com/gogo/protobuf/proto"
github_com_gogo_protobuf_types "github.com/gogo/protobuf/types"
_ "github.com/golang/protobuf/ptypes/duration"
_ "github.com/osmosis-labs/osmosis/x/lockup/types"
_ "google.golang.org/genproto/googleapis/api/annotations"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
_ "google.golang.org/protobuf/types/known/durationpb"
io "io"
math "math"
math_bits "math/bits"
......
......@@ -26,11 +26,10 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
// ReplacePoolIncentivesProposal is a gov Content type for updating the pool
// incentives. If a ReplacePoolIncentivesProposal passes, the proposal’s records
// override the existing DistrRecords set in the module. Each record has a
// specified gauge id and weight, and the incetives are distributed to each
// specified gauge id and weight, and the incentives are distributed to each
// gauge according to weight/total_weight. The incentives are put in the fee
// pool and it is allocated to gauges and community pool by the DistrRecords
// configuration. Note. when gaugeId=0, the amount is distributed to community
// pool.
// configuration. Note that gaugeId=0 represents the community pool.
type ReplacePoolIncentivesProposal struct {
Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment