changes in ethapi for ChainId always return something now

This commit is contained in:
Michael Shaw 2022-08-02 16:18:36 -04:00
parent 4cf523b626
commit 9eb7b22f47

View File

@ -431,7 +431,7 @@ var _ = Describe("Integration test", func() {
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
_, err = ipldClient.ChainID(ctx) _, err = ipldClient.ChainID(ctx)
Expect(err).To(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
}) })
}) })
}) })