Skip to content

Commit 3215928

Browse files
committed
format
1 parent fc07190 commit 3215928

File tree

1 file changed

+5
-3
lines changed
  • lib/lambda_ethereum_consensus/validator

1 file changed

+5
-3
lines changed

lib/lambda_ethereum_consensus/validator/duties.ex

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ defmodule LambdaEthereumConsensus.Validator.Duties do
6464
{time_p, new_proposers} =
6565
:timer.tc(fn -> compute_proposers_for_epoch(beacon, epoch, validators) end)
6666

67-
Logger.info("[Duties] Time to compute proposers for epoch #{epoch}: #{time_p/1_000}ms")
67+
Logger.info("[Duties] Time to compute proposers for epoch #{epoch}: #{time_p / 1_000}ms")
6868
# new_proposers = compute_proposers_for_epoch(beacon, epoch, validators)
6969
{time_a, new_attesters} =
7070
:timer.tc(fn -> compute_attesters_for_epoch(beacon, epoch, validators) end)
7171

72-
Logger.info("[Duties] Time to compute attesters for epoch #{epoch}: #{time_a/1_000}ms")
72+
Logger.info("[Duties] Time to compute attesters for epoch #{epoch}: #{time_a / 1_000}ms")
7373
# new_attesters = compute_attesters_for_epoch(beacon, epoch, validators)
7474

7575
# new_sync_committees =
@@ -94,7 +94,9 @@ defmodule LambdaEthereumConsensus.Validator.Duties do
9494
end
9595
end)
9696

97-
Logger.info("[Duties] Time to compute sync committees for epoch #{epoch}: #{time_sc/1_000}ms, #{inspect(new_sync_committees, pretty: true)}")
97+
Logger.info(
98+
"[Duties] Time to compute sync committees for epoch #{epoch}: #{time_sc / 1_000}ms, #{inspect(new_sync_committees, pretty: true)}"
99+
)
98100

99101
new_duties = %{
100102
proposers: new_proposers,

0 commit comments

Comments
 (0)