|
|
@ -5,7 +5,7 @@ defmodule Explorer.Counters.AverageBlockTime do |
|
|
|
Caches the number of token holders of a token. |
|
|
|
Caches the number of token holders of a token. |
|
|
|
""" |
|
|
|
""" |
|
|
|
|
|
|
|
|
|
|
|
import Ecto.Query, only: [from: 2] |
|
|
|
import Ecto.Query, only: [from: 2, where: 2] |
|
|
|
|
|
|
|
|
|
|
|
alias Explorer.Chain.Block |
|
|
|
alias Explorer.Chain.Block |
|
|
|
alias Explorer.Repo |
|
|
|
alias Explorer.Repo |
|
|
@ -62,27 +62,28 @@ defmodule Explorer.Counters.AverageBlockTime do |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
defp refresh_timestamps do |
|
|
|
defp refresh_timestamps do |
|
|
|
|
|
|
|
base_query = |
|
|
|
|
|
|
|
from(block in Block, |
|
|
|
|
|
|
|
limit: 100, |
|
|
|
|
|
|
|
offset: 100, |
|
|
|
|
|
|
|
order_by: [desc: block.number], |
|
|
|
|
|
|
|
select: {block.number, block.timestamp} |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
timestamps_query = |
|
|
|
timestamps_query = |
|
|
|
if Application.get_env(:explorer, :include_uncles_in_average_block_time) do |
|
|
|
if Application.get_env(:explorer, :include_uncles_in_average_block_time) do |
|
|
|
from(block in Block, |
|
|
|
base_query |
|
|
|
limit: 100, |
|
|
|
|
|
|
|
offset: 100, |
|
|
|
|
|
|
|
order_by: [desc: block.number], |
|
|
|
|
|
|
|
select: {block.number, block.timestamp} |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
else |
|
|
|
else |
|
|
|
from(block in Block, |
|
|
|
base_query |
|
|
|
limit: 100, |
|
|
|
|> where(consensus: true) |
|
|
|
offset: 100, |
|
|
|
|
|
|
|
order_by: [desc: block.number], |
|
|
|
|
|
|
|
where: block.consensus == true, |
|
|
|
|
|
|
|
select: {block.number, block.timestamp} |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
timestamps = |
|
|
|
timestamps_row = |
|
|
|
timestamps_query |
|
|
|
timestamps_query |
|
|
|
|> Repo.all() |
|
|
|
|> Repo.all() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
timestamps = |
|
|
|
|
|
|
|
timestamps_row |
|
|
|
|> Enum.sort_by(fn {_, timestamp} -> timestamp end, &>=/2) |
|
|
|
|> Enum.sort_by(fn {_, timestamp} -> timestamp end, &>=/2) |
|
|
|
|> Enum.map(fn {number, timestamp} -> |
|
|
|
|> Enum.map(fn {number, timestamp} -> |
|
|
|
{number, DateTime.to_unix(timestamp, :millisecond)} |
|
|
|
{number, DateTime.to_unix(timestamp, :millisecond)} |
|
|
@ -111,12 +112,13 @@ defmodule Explorer.Counters.AverageBlockTime do |
|
|
|
|
|
|
|
|
|
|
|
defp durations(timestamps) do |
|
|
|
defp durations(timestamps) do |
|
|
|
timestamps |
|
|
|
timestamps |
|
|
|
|> Enum.reduce({[], nil}, fn {_, timestamp}, {durations, last_timestamp} -> |
|
|
|
|> Enum.reduce({[], nil, nil}, fn {block_number, timestamp}, {durations, last_block_number, last_timestamp} -> |
|
|
|
if last_timestamp do |
|
|
|
if last_timestamp do |
|
|
|
duration = last_timestamp - timestamp |
|
|
|
block_numbers_range = last_block_number - block_number |
|
|
|
{[duration | durations], timestamp} |
|
|
|
duration = (last_timestamp - timestamp) / block_numbers_range |
|
|
|
|
|
|
|
{[duration | durations], block_number, timestamp} |
|
|
|
else |
|
|
|
else |
|
|
|
{durations, timestamp} |
|
|
|
{durations, block_number, timestamp} |
|
|
|
end |
|
|
|
end |
|
|
|
end) |
|
|
|
end) |
|
|
|
|> elem(0) |
|
|
|
|> elem(0) |
|
|
|