Skip to content

Commit

Permalink
Fix unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkachowski committed Feb 6, 2024
1 parent 32dd1b2 commit 21306eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/indexer/lib/indexer/block/fetcher.ex
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defmodule Indexer.Block.Fetcher do
alias Explorer.Chain.{Address, Block, Hash, Import, Transaction, Wei}
alias Explorer.Chain.Block.Reward
alias Explorer.Chain.Cache.Blocks, as: BlocksCache
alias Explorer.Chain.Cache.{Accounts, BlockNumber, Transactions, Uncles}
alias Explorer.Chain.Cache.{Accounts, BlockNumber, Uncles}
alias Indexer.Block.Fetcher.Receipts

alias Explorer.Celo.Util
Expand Down Expand Up @@ -380,7 +380,7 @@ defmodule Indexer.Block.Fetcher do

defp update_block_cache(_), do: :ok

defp update_transactions_cache(transactions) do
defp update_transactions_cache(_transactions) do
# Celo - Indexer and Web are not using the same cache instance, no need to update here
# Transactions.update(transactions)
:ok
Expand Down

0 comments on commit 21306eb

Please sign in to comment.