Skip to content

Commit

Permalink
fix: details
Browse files Browse the repository at this point in the history
  • Loading branch information
uri-99 committed Dec 23, 2024
1 parent f72d3e7 commit bf0b386
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion explorer/lib/explorer_web/components/batches_table.ex
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ defmodule ExplorerWeb.BatchesTable do
</:col>
<: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>
<:col :let={batch} label="Number of proofs">
Expand Down
2 changes: 1 addition & 1 deletion explorer/lib/explorer_web/live/pages/home/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit bf0b386

Please sign in to comment.