Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zl03jsj committed Feb 15, 2022
1 parent de32eae commit e4b0077
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions venus-shared/types/gateway/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ type ProofRegisterPolicy struct {
}

type RequestEvent struct {
Id uuid.UUID
Id uuid.UUID // nolint
Method string
Payload []byte
CreateTime time.Time `json:"-"`
Result chan *ResponseEvent `json:"-"`
}

type ResponseEvent struct {
Id uuid.UUID
Id uuid.UUID // nolint
Payload []byte
Error string
}
3 changes: 1 addition & 2 deletions venus-shared/types/gateway/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ type ComputeProofRequest struct {
}

type ConnectedCompleted struct {
ChannelId uuid.UUID
ChannelId uuid.UUID // nolint
}

type WalletSignRequest struct {
Signer address.Address
ToSign []byte
Meta sharedTypes.MsgMeta
}

0 comments on commit e4b0077

Please sign in to comment.