From 1b513a3c02c8cc49d87255442d479f22b7f0ab01 Mon Sep 17 00:00:00 2001 From: i-norden Date: Mon, 27 Dec 2021 12:31:31 -0600 Subject: [PATCH] bump version --- pkg/eth/api_test.go | 2 +- pkg/eth/eth_state_test.go | 2 +- version/version.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/eth/api_test.go b/pkg/eth/api_test.go index 13a6336b..f3a7d0ac 100644 --- a/pkg/eth/api_test.go +++ b/pkg/eth/api_test.go @@ -229,7 +229,7 @@ var _ = Describe("API", func() { }, }) Expect(err).ToNot(HaveOccurred()) - api = eth.NewPublicEthAPI(backend, nil, false) + api, _ = eth.NewPublicEthAPI(backend, nil, false, false) tx, err = indexAndPublisher.PushBlock(test_helpers.MockBlock, test_helpers.MockReceipts, test_helpers.MockBlock.Difficulty()) Expect(err).ToNot(HaveOccurred()) diff --git a/pkg/eth/eth_state_test.go b/pkg/eth/eth_state_test.go index f7dccc31..9a165192 100644 --- a/pkg/eth/eth_state_test.go +++ b/pkg/eth/eth_state_test.go @@ -94,7 +94,7 @@ var _ = Describe("eth state reading tests", func() { }, }) Expect(err).ToNot(HaveOccurred()) - api = eth.NewPublicEthAPI(backend, nil, false) + api, _ = eth.NewPublicEthAPI(backend, nil, false, false) // make the test blockchain (and state) blocks, receipts, chain = test_helpers.MakeChain(chainLength, test_helpers.Genesis, test_helpers.TestChainGen) diff --git a/version/version.go b/version/version.go index 29ac8ff1..7406368b 100644 --- a/version/version.go +++ b/version/version.go @@ -21,7 +21,7 @@ import "fmt" const ( Major = 0 // Major version component of the current release Minor = 3 // Minor version component of the current release - Patch = 6 // Patch version component of the current release + Patch = 9 // Patch version component of the current release Meta = "alpha" // Version metadata to append to the version string )