Skip to content

Commit 25e8148

Browse files
committed
fix: ci: Update gas limit
1 parent f1532cf commit 25e8148

File tree

2 files changed

+567
-565
lines changed

2 files changed

+567
-565
lines changed

.github/scripts/flamegraph_watcher.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# then polls the account balance until the expected balance has been reached
55
# and then kills the process. It also measures the elapsed time of the test and
66
# outputs it to Github Action's outputs.
7-
iterations=1500
7+
iterations=3500
88
value=1
99
account=0x33c6b73432B3aeA0C1725E415CC40D04908B85fd
1010
end_val=$((171 * $iterations * $value))
@@ -13,9 +13,11 @@ ethrex_l2 test load --path /home/runner/work/ethrex/ethrex/test_data/private_key
1313

1414
start_time=$(date +%s)
1515
output=$(ethrex_l2 info -b -a $account --wei 2>&1)
16+
echo "balance: $output"
1617
while [[ $output -lt $end_val ]]; do
17-
sleep 5
18+
sleep 2
1819
output=$(ethrex_l2 info -b -a $account --wei 2>&1)
20+
echo "balance: $output"
1921
done
2022
end_time=$(date +%s)
2123
elapsed=$((end_time - start_time))

0 commit comments

Comments
 (0)