Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarstonConnell committed Jan 8, 2024
1 parent 50bd12f commit c590b47
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions x/filetree/types/message_make_rootv2.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ import (

const TypeMsgMakeRootV2 = "make_root_v2"

var _ sdk.Msg = &MsgMakeRootV2{}
var _ legacytx.LegacyMsg = &MsgMakeRootV2{}
var (
_ sdk.Msg = &MsgMakeRootV2{}
_ legacytx.LegacyMsg = &MsgMakeRootV2{}
)

func NewMsgMakeRootV2(creator string, editors string, viewers string, trackingNumber string) *MsgMakeRootV2 {
return &MsgMakeRootV2{
Expand Down

0 comments on commit c590b47

Please sign in to comment.