Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 committed Oct 19, 2023
1 parent df43214 commit af3bcc6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ genmocks:
mockgen -source=./store/store.go -destination=./mock/store.go -package mock
mockgen -source=./relayer/message/handler.go -destination=./mock/message.go -package mock
mockgen -source=./chains/evm/listener/listener.go -destination=./mock/evmListener.go -package mock
mockgen -destination=./mock/substrateListener.go -package mock github.com/ChainSafe/sygma-core/chains/substrate/listener ChainConnection
mockgen -destination=./mock/substrateListener.go -package mock github.com/sygmaprotocol/sygma-core/chains/substrate/listener ChainConnection
4 changes: 2 additions & 2 deletions chains/evm/listener/listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"testing"
"time"

"github.com/ChainSafe/sygma-core/chains/evm/listener"
"github.com/ChainSafe/sygma-core/mock"
"github.com/stretchr/testify/suite"
"github.com/sygmaprotocol/sygma-core/chains/evm/listener"
"github.com/sygmaprotocol/sygma-core/mock"
"go.uber.org/mock/gomock"
)

Expand Down
1 change: 0 additions & 1 deletion chains/substrate/listener/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"github.com/centrifuge/go-substrate-rpc-client/v4/types"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/sygmaprotocol/sygma-core/store"
)

type EventHandler interface {
Expand Down
4 changes: 2 additions & 2 deletions chains/substrate/listener/listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"testing"
"time"

"github.com/ChainSafe/sygma-core/chains/substrate/listener"
"github.com/ChainSafe/sygma-core/mock"
"github.com/centrifuge/go-substrate-rpc-client/v4/types"
"github.com/stretchr/testify/suite"
"github.com/sygmaprotocol/sygma-core/chains/substrate/listener"
"github.com/sygmaprotocol/sygma-core/mock"
"go.uber.org/mock/gomock"
)

Expand Down
4 changes: 2 additions & 2 deletions mock/substrateListener.go

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

0 comments on commit af3bcc6

Please sign in to comment.