diff --git a/apps/explorer/lib/explorer/counters/address_transactions_counter.ex b/apps/explorer/lib/explorer/counters/address_transactions_counter.ex index edcdf3de5b..3b14795855 100644 --- a/apps/explorer/lib/explorer/counters/address_transactions_counter.ex +++ b/apps/explorer/lib/explorer/counters/address_transactions_counter.ex @@ -72,9 +72,9 @@ defmodule Explorer.Counters.AddressTransactionsCounter do end defp update_cache(address) do + put_into_cache("hash_#{address_hash_string}_#{@last_update_key}", current_time()) new_data = Chain.address_to_transaction_count(address) address_hash_string = get_address_hash_string(address) - put_into_cache("hash_#{address_hash_string}_#{@last_update_key}", current_time()) put_into_cache("hash_#{address_hash_string}", new_data) end