Skip to content

Commit 1256572

Browse files
committed
wait longer for CL and postgres nodes
1 parent e62f3f0 commit 1256572

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

framework/components/clnode/clnode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func newNode(in *Input, pgOut *postgres.Output) (*NodeOut, error) {
249249
Entrypoint: generateEntryPoint(),
250250
WaitingFor: wait.ForHTTP("/").
251251
WithPort(DefaultHTTPPort).
252-
WithStartupTimeout(1 * time.Minute).
252+
WithStartupTimeout(5 * time.Minute).
253253
WithPollInterval(200 * time.Millisecond),
254254
}
255255
if in.Node.HTTPPort != 0 && in.Node.P2PPort != 0 {

framework/components/postgres/postgres.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func NewPostgreSQL(in *Input) (*Output, error) {
133133
},
134134
WaitingFor: tcwait.ForExec([]string{"psql", "-h", "127.0.0.1",
135135
"-U", User, "-p", Port, "-c", "select", "1", "-d", Database}).
136-
WithStartupTimeout(40 * time.Second).
136+
WithStartupTimeout(5 * time.Minute).
137137
WithPollInterval(200 * time.Millisecond),
138138
}
139139
var portToExpose int

lib/.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
golang 1.24.0

seth/seth.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ bin_dir = "contracts/bin"
66
# Seth will walk through all the files in the directories and load ABIs from them, if they are valid Geth wrappers
77
# Files that are not geth wrappers will be ignored. Invalid or empty ABIs will cause Seth to fail to initialise
88
# geth_wrappers_dirs = ["contracts/bind"]
9+
geth_wrappers_dirs = ["/Users/bartektofel/Desktop/repos/chainlink-evm/gethwrappers"]
910

1011
# Uncomment if you want to load (address -> ABI_name) mapping from a file
1112
# It will also save any new contract deployment (address -> ABI_name) mapping there.

0 commit comments

Comments
 (0)