From c3b007de2623f93b4e0f1048ddaf0c92e505dfc9 Mon Sep 17 00:00:00 2001 From: i-norden Date: Mon, 10 Jan 2022 22:09:31 -0600 Subject: [PATCH 1/2] update to use v1.10.15-statediff-2.0.0 geth --- go.mod | 4 ++-- go.sum | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index c1fc557..6ad7a4d 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/vulcanize/eth-statediff-service go 1.13 require ( - github.com/ethereum/go-ethereum v1.10.13 + github.com/ethereum/go-ethereum v1.10.15 github.com/jmoiron/sqlx v1.2.0 github.com/prometheus/client_golang v1.4.0 github.com/sirupsen/logrus v1.7.0 @@ -12,4 +12,4 @@ require ( github.com/vulcanize/go-eth-state-node-iterator v0.0.1-alpha.0.20211014064906-d23d01ed8191 ) -replace github.com/ethereum/go-ethereum v1.10.13 => github.com/vulcanize/go-ethereum v1.10.13-statediff-0.0.29 +replace github.com/ethereum/go-ethereum v1.10.15 => github.com/vulcanize/go-ethereum v1.10.15-statediff-2.0.0 diff --git a/go.sum b/go.sum index 9dd37cf..f82c75f 100644 --- a/go.sum +++ b/go.sum @@ -674,8 +674,8 @@ github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPU github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= github.com/vulcanize/go-eth-state-node-iterator v0.0.1-alpha.0.20211014064906-d23d01ed8191 h1:+xSwb0xOLCAhejoai2BQZPTJW5Z+tU9xkTaOBwGnPoU= github.com/vulcanize/go-eth-state-node-iterator v0.0.1-alpha.0.20211014064906-d23d01ed8191/go.mod h1:FBMQp69PTnRg3kLx9qeWGfKYfVq4fpfbr69X8lEvvfs= -github.com/vulcanize/go-ethereum v1.10.13-statediff-0.0.29 h1:jU0msLliD4Ms4Ae2fK6ktKcqoaynmSmDkRDJg3XNqkQ= -github.com/vulcanize/go-ethereum v1.10.13-statediff-0.0.29/go.mod h1:9L+QY31AnWnX2/2HDOySCjQoYUdWNGBRMezFJVfH73E= +github.com/vulcanize/go-ethereum v1.10.15-statediff-2.0.0 h1:/BiYPUHnubh46YVtASGt4MPlFR96Rc+iJuTyOI8KZa4= +github.com/vulcanize/go-ethereum v1.10.15-statediff-2.0.0/go.mod h1:9L+QY31AnWnX2/2HDOySCjQoYUdWNGBRMezFJVfH73E= github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc h1:9lDbC6Rz4bwmou+oE6Dt4Cb2BGMur5eR/GYptkKUVHo= github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod h1:bopw91TMyo8J3tvftk8xmU2kPmlrt4nScJQZU2hE5EM= github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= From b68bd293047d21ccb7776bef0701270ec1711c45 Mon Sep 17 00:00:00 2001 From: i-norden Date: Wed, 26 Jan 2022 09:26:18 -0600 Subject: [PATCH 2/2] bump version --- version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version/version.go b/version/version.go index 90d85fa..33241bc 100644 --- a/version/version.go +++ b/version/version.go @@ -19,9 +19,9 @@ package version import "fmt" const ( - major = 0 // major version component of the current release - minor = 2 // minor version component of the current release - patch = 11 // patch version component of the current release + major = 2 // major version component of the current release + minor = 0 // minor version component of the current release + patch = 0 // patch version component of the current release ) // Version holds the textual version string.