Update watcher to use blockchain instead of contract data fetcher

This commit is contained in:
Matt Krump
2018-03-12 16:19:06 -05:00
committed by Matt K
parent 76dad443ec
commit a11fb709b2
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ var _ = Describe("Parity Node Info", func() {
It("returns infura ID and client name for infura node", func() {
mcc := MockContextCaller{core.INFURA}
cw := node.ClientWrapper{mcc, "https://mainnet.infura.io/123"}
cw := node.ClientWrapper{ContextCaller: mcc, IPCPath: "https://mainnet.infura.io/123"}
n := node.MakeNode(cw)
Expect(n.ID).To(Equal("infura"))
Expect(n.ClientName).To(Equal("infura"))