Skip to content

Commit

Permalink
Move modules related to transactions to transactor module
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 committed Sep 29, 2023
1 parent 9ad8df7 commit f16fd6b
Show file tree
Hide file tree
Showing 14 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion chains/evm/transactor/monitored/monitored.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/rs/zerolog/log"

"github.com/ChainSafe/sygma-core/chains/evm/client"
"github.com/ChainSafe/sygma-core/chains/evm/transaction"
"github.com/ChainSafe/sygma-core/chains/evm/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/transactor/transaction"
)

type GasPricer interface {
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/transactor/monitored/monitored_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"time"

mock_calls "github.com/ChainSafe/sygma-core/chains/evm/mock"
"github.com/ChainSafe/sygma-core/chains/evm/transaction"
"github.com/ChainSafe/sygma-core/chains/evm/transactor"
mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/transactor/monitored"
"github.com/ChainSafe/sygma-core/chains/evm/transactor/transaction"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/golang/mock/gomock"
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/transactor/signAndSend/signAndSend.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"math/big"

"github.com/ChainSafe/sygma-core/chains/evm/client"
"github.com/ChainSafe/sygma-core/chains/evm/transaction"
"github.com/ChainSafe/sygma-core/chains/evm/transactor"
"github.com/ChainSafe/sygma-core/chains/evm/transactor/transaction"
"github.com/ethereum/go-ethereum/common"
"github.com/rs/zerolog/log"
)
Expand Down
2 changes: 1 addition & 1 deletion chains/evm/transactor/signAndSend/signAndSend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"testing"

mock_calls "github.com/ChainSafe/sygma-core/chains/evm/mock"
"github.com/ChainSafe/sygma-core/chains/evm/transaction"
"github.com/ChainSafe/sygma-core/chains/evm/transactor"
mock_transactor "github.com/ChainSafe/sygma-core/chains/evm/transactor/mock"
"github.com/ChainSafe/sygma-core/chains/evm/transactor/signAndSend"
"github.com/ChainSafe/sygma-core/chains/evm/transactor/transaction"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/golang/mock/gomock"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion logger/logger.go β†’ observability/logger.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package logger
package observability

import (
"io"
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry/metrics.go β†’ observability/metrics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package opentelemetry
package observability

import (
"context"
Expand Down
File renamed without changes.

0 comments on commit f16fd6b

Please sign in to comment.