Update ipld-eth-db image source and increase tx batch wait

This commit is contained in:
Prathamesh Musale 2022-03-18 09:53:34 +05:30
parent 86eee94f9b
commit e8c1db69b4
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ services:
ipld-eth-db:
restart: always
image: vulcanize/ipld-eth-db:v0.3.1
image: vulcanize/ipld-eth-db:v3.0.7
environment:
POSTGRES_USER: "vdbm"
POSTGRES_DB: "vulcanize_testing"

View File

@ -176,7 +176,7 @@ var _ = Describe("eth state reading tests", func() {
Expect(err).ToNot(HaveOccurred())
// wait for tx batch process to complete.
time.Sleep(600 * time.Millisecond)
time.Sleep(10000 * time.Millisecond)
err = tx.Submit(err)
Expect(err).ToNot(HaveOccurred())
})