Add Pep price feed

This commit is contained in:
Rob Mulholand
2018-08-16 11:22:16 -05:00
parent 9f7a776d70
commit 0551147453
26 changed files with 697 additions and 75 deletions
+1 -2
View File
@@ -59,11 +59,10 @@ var _ = Describe("Reading contracts", func() {
transactionConverter := rpc2.NewRpcTransactionConverter(ethClient)
blockChain := geth.NewBlockChain(blockChainClient, node, transactionConverter)
logs, err := blockChain.GetLogs(core.Contract{Hash: "x123"}, big.NewInt(4703824), nil)
logs, err := blockChain.GetLogs(core.Contract{Hash: "0x123"}, big.NewInt(4703824), nil)
Expect(err).To(BeNil())
Expect(len(logs)).To(Equal(0))
})
})