bump version

This commit is contained in:
i-norden
2021-12-27 15:08:04 -06:00
parent bd093e0ea6
commit 1b513a3c02
3 changed files with 3 additions and 3 deletions
+1 -1
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())
+1 -1
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)