Skip to content

Commit 71bc8a9

Browse files
committed
lit
1 parent 9d116b5 commit 71bc8a9

File tree

8 files changed

+11
-4
lines changed

8 files changed

+11
-4
lines changed

app/upgrades/v6.0.0/deics.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ func MoveICSToStaking(ctx sdk.Context, sk stakingkeeper.Keeper, bk bankkeeper.Ke
152152
} else if !errors.Is(err, types.ErrNoValidatorFound) {
153153
return err
154154
}
155-
155+
156156
_, err = srv.CreateValidator(ctx, &types.MsgCreateValidator{
157157
Description: types.Description{
158158
Moniker: fmt.Sprintf("ics %d", i),

testutil/mocks/contractmanager/types/expected_keepers.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testutil/mocks/interchainqueries/keeper/verify.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testutil/mocks/interchaintxs/types/expected_keepers.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testutil/mocks/transfer/types/expected_keepers.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x/revenue/keeper/grpc_query_server_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ import (
66
"cosmossdk.io/math"
77
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
88
"github.com/golang/mock/gomock"
9+
"github.com/stretchr/testify/require"
10+
911
appconfig "github.com/neutron-org/neutron/v6/app/config"
1012
mock_types "github.com/neutron-org/neutron/v6/testutil/mocks/revenue/types"
1113
testutil_keeper "github.com/neutron-org/neutron/v6/testutil/revenue/keeper"
1214
revenuekeeper "github.com/neutron-org/neutron/v6/x/revenue/keeper"
1315
revenuetypes "github.com/neutron-org/neutron/v6/x/revenue/types"
14-
"github.com/stretchr/testify/require"
1516
)
1617

1718
func TestQueryParams(t *testing.T) {

x/revenue/keeper/twap.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77
storetypes "cosmossdk.io/store/types"
88
sdk "github.com/cosmos/cosmos-sdk/types"
99
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
10-
"github.com/neutron-org/neutron/v6/x/revenue/types"
1110
slinkytypes "github.com/skip-mev/slinky/pkg/types"
11+
12+
"github.com/neutron-org/neutron/v6/x/revenue/types"
1213
)
1314

1415
// UpdateRewardAssetPrice stores fresh cumulative and absolute price of the reward asset and cleans

x/revenue/types/params.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ import (
44
fmt "fmt"
55

66
"cosmossdk.io/math"
7-
"github.com/neutron-org/neutron/v6/app/params"
87
"gopkg.in/yaml.v2"
8+
9+
"github.com/neutron-org/neutron/v6/app/params"
910
)
1011

1112
var (

0 commit comments

Comments
 (0)