Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarstonConnell committed Jan 8, 2024
1 parent 181d44d commit 50bd12f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions x/filetree/types/message_make_rootv2.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ package types
import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/x/auth/legacy/legacytx"
)

const TypeMsgMakeRootV2 = "make_root_v2"

var _ sdk.Msg = &MsgMakeRootV2{}

Check failure on line 11 in x/filetree/types/message_make_rootv2.go

View workflow job for this annotation

GitHub Actions / lint

File is not `gofumpt`-ed (gofumpt)
var _ legacytx.LegacyMsg = &MsgMakeRootV2{}

func NewMsgMakeRootV2(creator string, editors string, viewers string, trackingNumber string) *MsgMakeRootV2 {
return &MsgMakeRootV2{
Expand Down
2 changes: 1 addition & 1 deletion x/jklmint/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
// TODO: Determine the default value
DefaultMintDenom = "ujkl"
DefaultProviderRatio = int64(4)
DefaultTokensPerBlock = int64(6)
DefaultTokensPerBlock = int64(6_000_000)
)

// ParamKeyTable the param key table for launch module
Expand Down

0 comments on commit 50bd12f

Please sign in to comment.