From 2e841253d198aa76ae953224a024943c9614e929 Mon Sep 17 00:00:00 2001 From: Jordan Krage Date: Wed, 29 Nov 2023 17:37:14 -0600 Subject: [PATCH] diff --- go.mod | 2 +- go.sum | 4 ++-- mercury/v1/mercury.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 4609d7a..6160799 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.21.3 require ( github.com/pkg/errors v0.9.1 github.com/shopspring/decimal v1.3.1 - github.com/smartcontractkit/chainlink-common v0.1.7-0.20231128124224-c22255d96b69 + github.com/smartcontractkit/chainlink-common v0.1.7-0.20231129233646-14b11bca4d96 github.com/smartcontractkit/libocr v0.0.0-20231107151413-13e0202ae8d7 github.com/stretchr/testify v1.8.4 google.golang.org/protobuf v1.31.0 diff --git a/go.sum b/go.sum index 1f91cb7..461605c 100644 --- a/go.sum +++ b/go.sum @@ -18,8 +18,8 @@ github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDN github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/smartcontractkit/chainlink-common v0.1.7-0.20231128124224-c22255d96b69 h1:/KdjURr56F/ezic6aBxAUIohQvP8CorzVYoRkFPSPlQ= -github.com/smartcontractkit/chainlink-common v0.1.7-0.20231128124224-c22255d96b69/go.mod h1:Hrru9i7n+WEYyW2aIt3/YGPhxLX+HEGWnhk3yVXeDF8= +github.com/smartcontractkit/chainlink-common v0.1.7-0.20231129233646-14b11bca4d96 h1:Mj1lA/RkBnQ8EUA6uObsg5ehYC8DXn/dRTWj4muSNtA= +github.com/smartcontractkit/chainlink-common v0.1.7-0.20231129233646-14b11bca4d96/go.mod h1:Hrru9i7n+WEYyW2aIt3/YGPhxLX+HEGWnhk3yVXeDF8= github.com/smartcontractkit/libocr v0.0.0-20231107151413-13e0202ae8d7 h1:21V61XOYSxpFmFqlhr5IaEh1uQ1F6CewJ30D/U/P34c= github.com/smartcontractkit/libocr v0.0.0-20231107151413-13e0202ae8d7/go.mod h1:2lyRkw/qLQgUWlrWWmq5nj0y90rWeO6Y+v+fCakRgb0= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= diff --git a/mercury/v1/mercury.go b/mercury/v1/mercury.go index 2b113a9..eea82c5 100644 --- a/mercury/v1/mercury.go +++ b/mercury/v1/mercury.go @@ -22,7 +22,7 @@ import ( // MaxAllowedBlocks indicates the maximum len of LatestBlocks in any given observation. // observations that violate this will be discarded -const MaxAllowedBlocks = 5 +const MaxAllowedBlocks = 10 // DataSource implementations must be thread-safe. Observe may be called by many // different threads concurrently.