Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-axner committed Oct 7, 2024
1 parent 8028983 commit 1d41f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
6 changes: 1 addition & 5 deletions modules/core/03-connection/types/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ package types
import (
"fmt"

<<<<<<< HEAD
host "github.com/cosmos/ibc-go/v8/modules/core/24-host"
=======
host "github.com/cosmos/ibc-go/v9/modules/core/24-host"
"github.com/cosmos/ibc-go/v9/modules/core/exported"
>>>>>>> ff2b668c (fix: avoid invalid identifier error when validate genesis (#7397))
"github.com/cosmos/ibc-go/v8/modules/core/exported"
)

// NewConnectionPaths creates a ConnectionPaths instance.
Expand Down
8 changes: 1 addition & 7 deletions modules/core/03-connection/types/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,10 @@ import (

"github.com/stretchr/testify/require"

<<<<<<< HEAD
"github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"
commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types"
"github.com/cosmos/ibc-go/v8/modules/core/exported"
ibctesting "github.com/cosmos/ibc-go/v8/testing"
=======
"github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"
commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types"
"github.com/cosmos/ibc-go/v9/modules/core/exported"
ibctesting "github.com/cosmos/ibc-go/v9/testing"
>>>>>>> ff2b668c (fix: avoid invalid identifier error when validate genesis (#7397))
)

func TestValidateGenesis(t *testing.T) {
Expand Down

0 comments on commit 1d41f74

Please sign in to comment.