Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions capabilities/writetarget/write_target_monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ import (
)

const (
repoCLLCommon = "https://raw.githubusercontent.com/smartcontractkit/chainlink-framework"
// TODO: replace with main when merged
versionRefsDevelop = "refs/heads/refactor-write-target"
schemaBasePath = repoCLLCommon + "/" + versionRefsDevelop + "/capabilities/capabilities/writetarget/pb"
repoCLLFramework = "https://raw.githubusercontent.com/smartcontractkit/chainlink-framework"
versionRefsMain = "refs/heads/main"
schemaBasePath = repoCLLFramework + "/" + versionRefsMain + "/capabilities/writetarget/monitoring/pb"
)

func NewMonitorEmitter(lggr logger.Logger) beholder.ProtoEmitter {
Expand Down
Loading