Skip to content

Commit

Permalink
ci: etherscan: de-randomize sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Jan 5, 2023
1 parent 30333e5 commit 3ea6558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci_test_etherscan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ solc-select use 0.4.25 --always-install
delay_no_key () {
# Perform a small sleep when API key is not available (e.g. on PR CI from external contributor)
if [ "$GITHUB_ETHERSCAN" = "" ]; then
sleep $(( ( RANDOM % 5 ) + 1 ))s
sleep 5s
fi
}

Expand Down

0 comments on commit 3ea6558

Please sign in to comment.