Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
bukata-sa committed Jul 9, 2024
1 parent 5bdc38b commit d9726a9
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/services/chainlink/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"bytes"
"context"
"fmt"
"github.com/smartcontractkit/chainlink/v2/core/services/headreporter"
"math/big"
"net/http"
"sync"
Expand Down Expand Up @@ -58,7 +59,6 @@ import (
externalp2p "github.com/smartcontractkit/chainlink/v2/core/services/p2p/wrapper"
"github.com/smartcontractkit/chainlink/v2/core/services/periodicbackup"
"github.com/smartcontractkit/chainlink/v2/core/services/pipeline"
"github.com/smartcontractkit/chainlink/v2/core/services/promreporter"
"github.com/smartcontractkit/chainlink/v2/core/services/registrysyncer"
"github.com/smartcontractkit/chainlink/v2/core/services/relay/evm/mercury"
"github.com/smartcontractkit/chainlink/v2/core/services/relay/evm/mercury/wsrpc"
Expand Down Expand Up @@ -357,7 +357,7 @@ func NewApplication(opts ApplicationOpts) (Application, error) {
)

for _, chain := range legacyEVMChains.Slice() {
chain.HeadBroadcaster().Subscribe(promReporter)
chain.HeadBroadcaster().Subscribe(headReporter)
chain.TxManager().RegisterResumeCallback(pipelineRunner.ResumeRun)
}

Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions core/services/synchronization/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const (
AutomationCustom TelemetryType = "automation-custom"
OCR3Automation TelemetryType = "ocr3-automation"
OCR3Rebalancer TelemetryType = "ocr3-rebalancer"
HeadReport TelemetryType = "head-report"
)

type TelemPayload struct {
Expand Down

0 comments on commit d9726a9

Please sign in to comment.