Skip to content

Commit

Permalink
fmt code
Browse files Browse the repository at this point in the history
  • Loading branch information
avery committed Dec 9, 2024
1 parent 54b724b commit bf3dda8
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 33 deletions.
49 changes: 25 additions & 24 deletions modules/guardian/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion modules/mint/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ func (k Keeper) SetMinter(ctx sdk.Context, minter types.Minter) {
store := ctx.KVStore(k.storeKey)
b := k.cdc.MustMarshal(&minter)
store.Set(types.MinterKey, b)
k.GetMinter(ctx)
}

// MintCoins implements an alias call to the underlying supply keeper's
Expand Down
17 changes: 9 additions & 8 deletions modules/mint/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions proto/irishub/guardian/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ option go_package = "github.com/irisnet/irishub/v4/modules/guardian/types";

// Msg defines the guardian Msg service
service Msg {
option (cosmos.msg.v1.service) = true;

// AddSuper defines a method for adding a super account
rpc AddSuper(MsgAddSuper) returns (MsgAddSuperResponse);

Expand Down
2 changes: 2 additions & 0 deletions proto/irishub/mint/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ option (gogoproto.goproto_getters_all) = false;

// Msg defines the coinswap Msg service
service Msg {
option (cosmos.msg.v1.service) = true;

// UpdateParams defines a governance operation for updating the x/coinswap
// module parameters. The authority is defined in the keeper.
//
Expand Down

0 comments on commit bf3dda8

Please sign in to comment.