Skip to content

Commit 3ea6558

Browse files
committed
ci: etherscan: de-randomize sleep
1 parent 30333e5 commit 3ea6558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci_test_etherscan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ solc-select use 0.4.25 --always-install
1010
delay_no_key () {
1111
# Perform a small sleep when API key is not available (e.g. on PR CI from external contributor)
1212
if [ "$GITHUB_ETHERSCAN" = "" ]; then
13-
sleep $(( ( RANDOM % 5 ) + 1 ))s
13+
sleep 5s
1414
fi
1515
}
1616

0 commit comments

Comments
 (0)