Skip to content

Commit

Permalink
Change type for moderator fee type that was causing problems
Browse files Browse the repository at this point in the history
  • Loading branch information
meyer9 committed Mar 21, 2018
1 parent e092229 commit 7d3b17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawling/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type ModeratorPrice struct {
type ModeratorFee struct {
FixedFee *ModeratorPrice `protobuf:"bytes,1,opt,name=fixedFee" json:"fixedFee,omitempty"`
Percentage float32 `protobuf:"fixed32,2,opt,name=percentage" json:"percentage,omitempty"`
FeeType int32 `protobuf:"varint,3,opt,name=feeType,enum=Moderator_Fee_FeeType" json:"feeType,omitempty"`
FeeType interface{} `json:"feeType,omitempty"`
}

type Moderator struct {
Expand Down

0 comments on commit 7d3b17e

Please sign in to comment.