Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions x/dex/keeper/begin_block_new_block_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import (
"github.com/sei-protocol/sei-chain/x/dex/keeper"
)

const SupportedFeatures = "iterator,staking,stargate"
const TestContract = "sei14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9sh9m79m"
const (
SupportedFeatures = "iterator,staking,stargate"
TestContract = "sei14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9sh9m79m"
)

func TestHandleBBNewBlock(t *testing.T) {
// this test only ensures that HandleBBNewBlock doesn't crash. The actual logic
Expand Down
18 changes: 0 additions & 18 deletions x/mint/client/testutil/cli_test.go

This file was deleted.

163 changes: 0 additions & 163 deletions x/mint/client/testutil/suite.go

This file was deleted.

1 change: 0 additions & 1 deletion x/mint/keeper/hooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ func (k Keeper) AfterEpochEnd(ctx sdk.Context, epoch types.Epoch) {
// minter := k.GetMinter(ctx)
// params := k.GetParams(ctx)
// if epoch.CurrentEpochStartTime >= params.Red

}
2 changes: 1 addition & 1 deletion x/mint/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Rout

// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the mint module.
func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) {
types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx))
types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx)) //nolint:errcheck // this is inside a module, and the method doesn't return error. Leave it alone.
}

// GetTxCmd returns no root tx command for the mint module.
Expand Down