We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ddc14b6 + 3d66f25 commit 185ec07Copy full SHA for 185ec07
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