Skip to content

Commit b9f9fc5

Browse files
committed
fix lints
1 parent 31a2bd4 commit b9f9fc5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

integration-tests/testconfig/testconfig.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -600,10 +600,9 @@ func handleDefaultConfigOverride(logger zerolog.Logger, filename, configurationN
600600
if old_network.ChainID == new_network.ChainID {
601601
oldConfig.Seth.Networks[i] = new_network
602602
break
603-
} else {
604-
if _, ok := networksToUse[new_network.ChainID]; !ok {
605-
networksToUse[new_network.ChainID] = new_network
606-
}
603+
}
604+
if _, ok := networksToUse[new_network.ChainID]; !ok {
605+
networksToUse[new_network.ChainID] = new_network
607606
}
608607
}
609608
networksToUse[old_network.ChainID] = oldConfig.Seth.Networks[i]

0 commit comments

Comments
 (0)