We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 609d744 commit 3d66f25Copy full SHA for 3d66f25
1 file changed
explorer/lib/explorer/periodically.ex
@@ -22,7 +22,9 @@ defmodule Explorer.Periodically do
22
:timer.send_interval(one_second * 12, :batches)
23
# every 1 hour
24
:timer.send_interval(one_second * seconds_in_an_hour, :restakings)
25
- :timer.send_interval(one_second * seconds_in_an_hour, :aggregated_proofs)
+
26
+ # Fetch new aggregated proofs every 1 minute
27
+ :timer.send_interval(one_second * 60, :aggregated_proofs)
28
end
29
30
# Reads and process last blocks for operators and restaking changes
0 commit comments