From 88b9e6e49c09d020dea721f57a9c7867d51d3c5a Mon Sep 17 00:00:00 2001 From: Diego Campo Date: Mon, 6 May 2024 22:21:04 +0200 Subject: [PATCH] update chain dep to latest major-upgrade --- cmd/node/appchain_test.go | 9 +++++---- go.mod | 2 +- go.sum | 2 ++ 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/cmd/node/appchain_test.go b/cmd/node/appchain_test.go index 57b0b5f..005ddf2 100644 --- a/cmd/node/appchain_test.go +++ b/cmd/node/appchain_test.go @@ -4,6 +4,10 @@ import ( "context" "encoding/hex" "fmt" + "os" + "testing" + "time" + alloraMath "github.com/allora-network/allora-chain/math" "github.com/allora-network/allora-chain/x/emissions/types" "github.com/allora-network/b7s/host" @@ -14,9 +18,6 @@ import ( "github.com/libp2p/go-libp2p/core/peer" "github.com/rs/zerolog" "github.com/stretchr/testify/suite" - "os" - "testing" - "time" ) type AppChainTestSuit struct { @@ -183,5 +184,5 @@ func (ap *AppChainTestSuit) TestSendDataWithRetry() { } req.WorkerDataBundles[0].Pubkey = pkStr req.WorkerDataBundles[0].InferencesForecastsBundleSignature = sig - ap.app.SendDataWithRetry(ctx, req, 5, 0, 2) + ap.app.SendDataWithRetry(ctx, req, 5, 0, 2, "test send with retry") } diff --git a/go.mod b/go.mod index 3998713..f703ab4 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.22.2 require ( cosmossdk.io/math v1.3.0 - github.com/allora-network/allora-chain v0.0.11-0.20240424193419-aff51ecae7ac + github.com/allora-network/allora-chain v0.0.11-0.20240506150350-a9f6ade6aa64 github.com/allora-network/b7s v0.0.2-0.20240418175046-eca9bfd68831 github.com/cockroachdb/pebble v1.1.0 github.com/cosmos/cosmos-sdk v0.50.5 diff --git a/go.sum b/go.sum index 714de23..1b5c43b 100644 --- a/go.sum +++ b/go.sum @@ -59,6 +59,8 @@ github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRF github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/allora-network/allora-chain v0.0.11-0.20240424193419-aff51ecae7ac h1:YtSVBZuAC5sKyJsJ9PVuxcqNJr0kkTvfZ/53vgBP6Qo= github.com/allora-network/allora-chain v0.0.11-0.20240424193419-aff51ecae7ac/go.mod h1:evALp8UB4d8uR9XJ3EM1NQdsj9CpwJOJ9bZqhgl54eM= +github.com/allora-network/allora-chain v0.0.11-0.20240506150350-a9f6ade6aa64 h1:eqyQ1FpDeeuWhCh5+zUVZKGEpbiiSq3BRJYu7ijyVQM= +github.com/allora-network/allora-chain v0.0.11-0.20240506150350-a9f6ade6aa64/go.mod h1:evALp8UB4d8uR9XJ3EM1NQdsj9CpwJOJ9bZqhgl54eM= github.com/allora-network/b7s v0.0.2-0.20240418175046-eca9bfd68831 h1:4s9e1sjeHlqG4SWoV29vcf/WGX9KeATx1V38X4k2f+I= github.com/allora-network/b7s v0.0.2-0.20240418175046-eca9bfd68831/go.mod h1:rJJrdC5Y83LEDFxo/iJp3JJpi8I6TJncOTigMWk8ieE= github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=