Skip to content

Commit 3413847

Browse files
authored
faststreams: bump (#3418)
* faststreams: bump * faststreams: bugfixes across the board, slightly less memory usage due to buffer alignment fix * stew: cleanups * also testutils
1 parent 3a00915 commit 3413847

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

scripts/make_states.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ mkdir -p "$DATA_DIR"
2929

3030
while true;
3131
do
32+
SECONDS=0
3233
"$SCRIPT_DIR/../build/nimbus_execution_client" import \
3334
--data-dir:"${DATA_DIR}" \
3435
--era1-dir:"${ERA_DIR}" \
@@ -37,4 +38,9 @@ do
3738
--max-blocks:${MAX_BLOCKS:-1000000} "$@"
3839
cp -ar "${DATA_DIR}" "${DATA_DIR}-$(printf "%04d" $counter)"
3940
counter=$((counter+1))
41+
42+
if (( $SECONDS < 10 )); then
43+
echo "Done"
44+
exit 0
45+
fi
4046
done

0 commit comments

Comments
 (0)