From bf0b38672f6e594a72e5efc36c31da2ac01a5ad9 Mon Sep 17 00:00:00 2001 From: Urix <43704209+uri-99@users.noreply.github.com> Date: Mon, 23 Dec 2024 19:26:04 -0300 Subject: [PATCH] fix: details --- explorer/lib/explorer_web/components/batches_table.ex | 2 +- explorer/lib/explorer_web/live/pages/home/index.ex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/explorer/lib/explorer_web/components/batches_table.ex b/explorer/lib/explorer_web/components/batches_table.ex index bb34fbba9..f49e9d7e2 100644 --- a/explorer/lib/explorer_web/components/batches_table.ex +++ b/explorer/lib/explorer_web/components/batches_table.ex @@ -31,7 +31,7 @@ defmodule ExplorerWeb.BatchesTable do <:col :let={batch} label="Fee per proof"> - <%= batch.fee_per_proof |> EthConverter.wei_to_eth(4) %> ETH + <%= batch.fee_per_proof |> EthConverter.wei_to_eth(6) %> ETH <:col :let={batch} label="Number of proofs"> diff --git a/explorer/lib/explorer_web/live/pages/home/index.ex b/explorer/lib/explorer_web/live/pages/home/index.ex index 14039ad11..b074b4213 100644 --- a/explorer/lib/explorer_web/live/pages/home/index.ex +++ b/explorer/lib/explorer_web/live/pages/home/index.ex @@ -14,7 +14,7 @@ defmodule ExplorerWeb.Home.Index do _ -> 0 end - avg_fee_per_proof_eth = EthConverter.wei_to_eth(avg_fee_per_proof, 6) + avg_fee_per_proof_eth = EthConverter.wei_to_eth(avg_fee_per_proof, 4) verified_proofs = Batches.get_amount_of_verified_proofs() operators_registered = Operators.get_amount_of_operators()