Skip to content

Commit 449ce83

Browse files
committed
Minor
1 parent 5f60fb3 commit 449ce83

File tree

15 files changed

+17
-3
lines changed

15 files changed

+17
-3
lines changed

chains/headtracker/head_broadcaster.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"github.com/smartcontractkit/chainlink-common/pkg/logger"
1111
"github.com/smartcontractkit/chainlink-common/pkg/services"
1212
"github.com/smartcontractkit/chainlink-common/pkg/utils/mailbox"
13+
1314
"github.com/smartcontractkit/chainlink-framework/chains"
1415
)
1516

chains/headtracker/head_listener.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313

1414
"github.com/smartcontractkit/chainlink-common/pkg/logger"
1515
"github.com/smartcontractkit/chainlink-common/pkg/services"
16+
1617
"github.com/smartcontractkit/chainlink-framework/chains"
1718
"github.com/smartcontractkit/chainlink-framework/chains/headtracker/types"
1819
)

chains/headtracker/head_tracker.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"github.com/smartcontractkit/chainlink-common/pkg/logger"
1414
"github.com/smartcontractkit/chainlink-common/pkg/services"
1515
"github.com/smartcontractkit/chainlink-common/pkg/utils/mailbox"
16+
1617
"github.com/smartcontractkit/chainlink-framework/chains"
1718
"github.com/smartcontractkit/chainlink-framework/chains/headtracker/types"
1819
)

chains/txmgr/broadcaster.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ import (
1818
"github.com/smartcontractkit/chainlink-common/pkg/logger"
1919
"github.com/smartcontractkit/chainlink-common/pkg/services"
2020
"github.com/smartcontractkit/chainlink-common/pkg/utils"
21+
"github.com/smartcontractkit/chainlink-framework/multinode"
22+
2123
"github.com/smartcontractkit/chainlink-framework/chains"
2224
"github.com/smartcontractkit/chainlink-framework/chains/fees"
2325
"github.com/smartcontractkit/chainlink-framework/chains/txmgr/types"
24-
"github.com/smartcontractkit/chainlink-framework/multinode"
2526
)
2627

2728
const (

chains/txmgr/confirmer.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ import (
2020
"github.com/smartcontractkit/chainlink-common/pkg/logger"
2121
"github.com/smartcontractkit/chainlink-common/pkg/services"
2222
"github.com/smartcontractkit/chainlink-common/pkg/utils/mailbox"
23+
"github.com/smartcontractkit/chainlink-framework/multinode"
24+
2325
"github.com/smartcontractkit/chainlink-framework/chains"
2426
"github.com/smartcontractkit/chainlink-framework/chains/fees"
2527
"github.com/smartcontractkit/chainlink-framework/chains/txmgr/types"
26-
"github.com/smartcontractkit/chainlink-framework/multinode"
2728
)
2829

2930
const (

chains/txmgr/reaper.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77

88
"github.com/smartcontractkit/chainlink-common/pkg/logger"
99
"github.com/smartcontractkit/chainlink-common/pkg/services"
10+
1011
"github.com/smartcontractkit/chainlink-framework/chains"
1112
"github.com/smartcontractkit/chainlink-framework/chains/txmgr/types"
1213
)

chains/txmgr/resender.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"github.com/smartcontractkit/chainlink-common/pkg/chains/label"
1010
"github.com/smartcontractkit/chainlink-common/pkg/logger"
1111
"github.com/smartcontractkit/chainlink-common/pkg/services"
12-
"github.com/smartcontractkit/chainlink-framework/chains"
1312
"github.com/smartcontractkit/chainlink-framework/multinode"
1413

14+
"github.com/smartcontractkit/chainlink-framework/chains"
1515
"github.com/smartcontractkit/chainlink-framework/chains/fees"
1616
txmgrtypes "github.com/smartcontractkit/chainlink-framework/chains/txmgr/types"
1717
)

chains/txmgr/tracker.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"github.com/smartcontractkit/chainlink-common/pkg/services"
1111
"github.com/smartcontractkit/chainlink-common/pkg/sqlutil"
1212
"github.com/smartcontractkit/chainlink-common/pkg/utils/mailbox"
13+
1314
"github.com/smartcontractkit/chainlink-framework/chains"
1415
"github.com/smartcontractkit/chainlink-framework/chains/fees"
1516
"github.com/smartcontractkit/chainlink-framework/chains/txmgr/types"

chains/txmgr/txmgr.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
"github.com/smartcontractkit/chainlink-common/pkg/services"
1717
commontypes "github.com/smartcontractkit/chainlink-common/pkg/types"
1818
"github.com/smartcontractkit/chainlink-common/pkg/utils"
19+
1920
"github.com/smartcontractkit/chainlink-framework/chains"
2021
"github.com/smartcontractkit/chainlink-framework/chains/fees"
2122
"github.com/smartcontractkit/chainlink-framework/chains/headtracker"

chains/txmgr/types/client.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"time"
88

99
"github.com/smartcontractkit/chainlink-common/pkg/logger"
10+
1011
"github.com/smartcontractkit/chainlink-framework/chains"
1112
"github.com/smartcontractkit/chainlink-framework/chains/fees"
1213
"github.com/smartcontractkit/chainlink-framework/multinode"

0 commit comments

Comments
 (0)