bump version

This commit is contained in:
i-norden 2021-12-27 12:31:31 -06:00
parent bd093e0ea6
commit 1b513a3c02
3 changed files with 3 additions and 3 deletions

View File

@ -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())

View File

@ -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)

View File

@ -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
)