Skip to content

Commit

Permalink
fix funding amount missing for new network (#12624)
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier authored Mar 28, 2024
1 parent 9056891 commit cd2dfa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/benchmark/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func getNetworkConfig(config *tc.TestConfig) NetworkConfig {
var nc NetworkConfig
var ok bool
if nc, ok = networkConfig[evmNetwork.Name]; !ok {
return defaultNetworkConfig
nc = defaultNetworkConfig
}

if evmNetwork.Name == networks.SimulatedEVM.Name || evmNetwork.Name == networks.SimulatedEVMNonDev.Name {
Expand Down Expand Up @@ -285,7 +285,7 @@ var networkConfig = map[string]NetworkConfig{
blockTime: 12 * time.Second,
deltaStage: time.Duration(0),
},
networks.BaseGoerli.Name: {
networks.BaseSepolia.Name: {
upkeepSLA: int64(60),
blockTime: 2 * time.Second,
deltaStage: 20 * time.Second,
Expand Down

0 comments on commit cd2dfa3

Please sign in to comment.