Skip to content

Commit

Permalink
Update core go mod refs
Browse files Browse the repository at this point in the history
  • Loading branch information
ilija42 committed Nov 25, 2023
1 parent a0dfbc5 commit df26848
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ require (
github.com/rs/zerolog v1.30.0
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b
github.com/smartcontractkit/chainlink-common v0.1.7-0.20231123003013-379db0b9e4c7
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20231123152908-322b3326d2a8
github.com/smartcontractkit/chainlink-solana v1.0.3-0.20231124181840-dbf514e39fb1
github.com/smartcontractkit/chainlink-testing-framework v1.19.5
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20231123194728-833dbe758ed8
github.com/smartcontractkit/chainlink/v2 v2.5.1-0.20231123194728-833dbe758ed8
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20231125101754-b902859e7b32
github.com/smartcontractkit/chainlink/v2 v2.5.1-0.20231125101754-b902859e7b32
github.com/smartcontractkit/libocr v0.0.0-20231107151413-13e0202ae8d7
github.com/stretchr/testify v1.8.4
github.com/testcontainers/testcontainers-go v0.23.0
Expand Down
8 changes: 4 additions & 4 deletions integration-tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2373,10 +2373,10 @@ github.com/smartcontractkit/chainlink-testing-framework v1.19.5 h1:Iq1L7wCA8IkBB
github.com/smartcontractkit/chainlink-testing-framework v1.19.5/go.mod h1:+FVgkz6phTc+piVT57AcQfr3I8xvZgZ1lOpRPOu/dLQ=
github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868 h1:FFdvEzlYwcuVHkdZ8YnZR/XomeMGbz5E2F2HZI3I3w8=
github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868/go.mod h1:Kn1Hape05UzFZ7bOUnm3GVsHzP0TNrVmpfXYNHdqGGs=
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20231123194728-833dbe758ed8 h1:XGsbIP9wiYLql3wX6KtYYjAq+3C7dx22YXS3pRwumZQ=
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20231123194728-833dbe758ed8/go.mod h1:VTnh5EutJpNOoewHqYrK5306LSXbD8jt3NDZA/3BUqk=
github.com/smartcontractkit/chainlink/v2 v2.5.1-0.20231123194728-833dbe758ed8 h1:lk4wr2Mzhu++FD12qqCJ6zn8KdeVKBrRSqDV0wCcC1s=
github.com/smartcontractkit/chainlink/v2 v2.5.1-0.20231123194728-833dbe758ed8/go.mod h1:2la17uw5BiHmUaEjc85rI98wTrn8E3NXXkDTqBWnHvs=
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20231125101754-b902859e7b32 h1:NHg5wn3VxCtWsEe7rOtKvCZNO+RcCBMfypbZx9BrKx0=
github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20231125101754-b902859e7b32/go.mod h1:aI9FLaOnu55McwTZe3RR7M5CqBJje+mQytJ9RHLF8TY=
github.com/smartcontractkit/chainlink/v2 v2.5.1-0.20231125101754-b902859e7b32 h1:KRso//ciWTjuaQcDNPwb6QWtvAlLHmCH2UUwg/VeKns=
github.com/smartcontractkit/chainlink/v2 v2.5.1-0.20231125101754-b902859e7b32/go.mod h1:8Ju7lcgrUAgIy5gqZGj8HdOF1gRNczTTJ3OJJm6rpsA=
github.com/smartcontractkit/go-plugin v0.0.0-20231003134350-e49dad63b306 h1:ko88+ZznniNJZbZPWAvHQU8SwKAdHngdDZ+pvVgB5ss=
github.com/smartcontractkit/go-plugin v0.0.0-20231003134350-e49dad63b306/go.mod h1:w1sAEES3g3PuV/RzUrgow20W2uErMly84hhD3um1WL4=
github.com/smartcontractkit/grpc-proxy v0.0.0-20230731113816-f1be6620749f h1:hgJif132UCdjo8u43i7iPN1/MFnu49hv7lFGFftCHKU=
Expand Down
3 changes: 3 additions & 0 deletions pkg/solana/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package solana
import (
"context"
"encoding/json"
"fmt"

"github.com/gagliardetto/solana-go"
"github.com/pkg/errors"
Expand Down Expand Up @@ -114,6 +115,7 @@ func (r *Relayer) NewMedianProvider(rargs relaytypes.RelayArgs, pargs relaytypes

cfg := configWatcher.chain.Config()
transmissionsCache := NewTransmissionsCache(transmissionsID, cfg, configWatcher.reader, r.lggr)
lggr.Info("NewMedianProvider is being called")
return &medianProvider{
configProvider: configWatcher,
transmissionsCache: transmissionsCache,
Expand Down Expand Up @@ -274,5 +276,6 @@ func (p *medianProvider) OnchainConfigCodec() median.OnchainConfigCodec {
}

func (p *medianProvider) ChainReader() relaytypes.ChainReader {
fmt.Println("This is the method being called")
return nil
}

0 comments on commit df26848

Please sign in to comment.