diff --git a/x/alliance/keeper/tests/delegation_test.go b/x/alliance/keeper/tests/delegation_test.go index 6bfa38e6..1117bbb8 100644 --- a/x/alliance/keeper/tests/delegation_test.go +++ b/x/alliance/keeper/tests/delegation_test.go @@ -5,6 +5,7 @@ import ( "time" "cosmossdk.io/math" + test_helpers "github.com/terra-money/alliance/app" "github.com/terra-money/alliance/x/alliance" "github.com/terra-money/alliance/x/alliance/keeper" diff --git a/x/alliance/keeper/tests/unbonding_test.go b/x/alliance/keeper/tests/unbonding_test.go index e848289c..e5585fda 100644 --- a/x/alliance/keeper/tests/unbonding_test.go +++ b/x/alliance/keeper/tests/unbonding_test.go @@ -8,6 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" + test_helpers "github.com/terra-money/alliance/app" "github.com/terra-money/alliance/x/alliance/types" ) diff --git a/x/alliance/tests/e2e/delegate_undelegate_test.go b/x/alliance/tests/e2e/delegate_undelegate_test.go index 6eca657a..e6a1fae6 100644 --- a/x/alliance/tests/e2e/delegate_undelegate_test.go +++ b/x/alliance/tests/e2e/delegate_undelegate_test.go @@ -5,6 +5,7 @@ import ( "time" "cosmossdk.io/math" + "github.com/terra-money/alliance/x/alliance" "github.com/terra-money/alliance/x/alliance/keeper" diff --git a/x/alliance/types/params.go b/x/alliance/types/params.go index 44d90d8f..51c77588 100644 --- a/x/alliance/types/params.go +++ b/x/alliance/types/params.go @@ -1,10 +1,11 @@ package types import ( - "cosmossdk.io/math" "fmt" "time" + "cosmossdk.io/math" + "golang.org/x/exp/slices" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"