Contract hist (#84)

Add ability to query contract historical state
This commit is contained in:
Matt K
2017-12-04 12:54:33 -06:00
committed by ericmeyer
parent 7501fe70a7
commit 71de8e970d
8 changed files with 143 additions and 44 deletions
+2 -2
View File
@@ -42,7 +42,7 @@ var _ = Describe("Reading from the Geth blockchain", func() {
Expect(firstBlock.Number + 1).Should(Equal(secondBlock.Number))
close(done)
}, 10)
}, 15)
It("retrieves the genesis block and first block", func(done Done) {
genesisBlock := blockchain.GetBlockByNumber(int64(0))
@@ -52,6 +52,6 @@ var _ = Describe("Reading from the Geth blockchain", func() {
Expect(firstBlock.Number).To(Equal(int64(1)))
close(done)
}, 10)
}, 15)
})