Skip to content

Commit

Permalink
Remove WS validation
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcauchi committed Nov 7, 2024
1 parent 774b413 commit 8b9df13
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions core/chains/evm/config/toml/defaults/Ethereum_Sepolia.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ChainID = '11155111'
FinalityTagEnabled = true
LinkContractAddress = '0x779877A7B0D9E8603169DdbD7836e478b4624789'
MinContractPayment = '0.1 link'
LogBroadcasterEnabled = false

[GasEstimator]
EIP1559DynamicFees = true
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ require (
github.com/smartcontractkit/chainlink-common v0.3.1-0.20241107134205-25e45ecd73ba
github.com/smartcontractkit/chainlink-protos/job-distributor v0.4.0
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.2
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.13
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.14-0.20241107214439-2aa1df1ad45c
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.5
github.com/smartcontractkit/chainlink-testing-framework/wasp v1.50.2
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1423,8 +1423,8 @@ github.com/smartcontractkit/chainlink-starknet/relayer v0.1.1-0.20241017135645-1
github.com/smartcontractkit/chainlink-starknet/relayer v0.1.1-0.20241017135645-176a23722fd8/go.mod h1:WkBqgBo+g34Gm5vWkDDl8Fh3Mzd7bF5hXp7rryg0t5o=
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.2 h1:GDGrC5OGiV0RyM1znYWehSQXyZQWTOzrEeJRYmysPCE=
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.2/go.mod h1:DsT43c1oTBmp3iQkMcoZOoKThwZvt8X3Pz6UmznJ4GY=
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.13 h1:T0kbw07Vb6xUyA9MIJZfErMgWseWi1zf7cYvRpoq7ug=
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.13/go.mod h1:1CKUOzoK+Ga19WuhRH9pxZ+qUUnrlIx108VEA6qSzeQ=
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.14-0.20241107214439-2aa1df1ad45c h1:DXw71zjWLmy6Nzy6/Gc7fs2M0q+5FSSoQVBXIB93O3c=
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.14-0.20241107214439-2aa1df1ad45c/go.mod h1:1CKUOzoK+Ga19WuhRH9pxZ+qUUnrlIx108VEA6qSzeQ=
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0 h1:VIxK8u0Jd0Q/VuhmsNm6Bls6Tb31H/sA3A/rbc5hnhg=
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0/go.mod h1:lyAu+oMXdNUzEDScj2DXB2IueY+SDXPPfyl/kb63tMM=
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.5 h1:BxN9wddNLiugruN3k7nYoSMQTO0tz9qR+vILFW2l0Ps=
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/types/config/node/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ func WithPrivateEVMs(networks []blockchain.EVMNetwork, commonChainConfig *evmcfg
var evmConfigs []*evmcfg.EVMConfig
for _, network := range networks {
var evmNodes []*evmcfg.Node
for i := range network.URLs {
for i := range network.HTTPURLs {
evmNodes = append(evmNodes, &evmcfg.Node{
Name: ptr.Ptr(fmt.Sprintf("%s-%d", network.Name, i)),
WSURL: itutils.MustURL(network.URLs[i]),
Name: ptr.Ptr(fmt.Sprintf("%s-%d", network.Name, i)),
// WSURL: itutils.MustURL(network.URLs[i]),
HTTPURL: itutils.MustURL(network.HTTPURLs[i]),
})
}
Expand Down

0 comments on commit 8b9df13

Please sign in to comment.