Merge pull request #5948 from blockscout/fix-coin-balance-on-demand-unexpected-message

Fix unexpected messages in CoinBalanceOnDemand
pull/5954/head
Victor Baranov 2 years ago committed by GitHub
commit e23653fa88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 14
      apps/indexer/lib/indexer/fetcher/coin_balance_on_demand.ex

@ -12,6 +12,7 @@
- [#5809](https://github.com/blockscout/blockscout/pull/5809) - Fix 404 on `/metadata` page
- [#5807](https://github.com/blockscout/blockscout/pull/5807) - Update Makefile migrate command due to release build
- [#5786](https://github.com/blockscout/blockscout/pull/5786) - Replace `current_path` with `Controller.current_full_path` in two controllers
- [#5948](https://github.com/blockscout/blockscout/pull/5948) - Fix unexpected messages in `CoinBalanceOnDemand`
### Chore
- [#5869](https://github.com/blockscout/blockscout/pull/5869) - Bump reduce-reducers from 0.4.3 to 1.0.4 in /apps/block_scout_web/assets

@ -64,10 +64,12 @@ defmodule Indexer.Fetcher.CoinBalanceOnDemand do
GenServer.start_link(__MODULE__, json_rpc_named_arguments, server_opts)
end
@impl true
def init(json_rpc_named_arguments) do
{:ok, %{json_rpc_named_arguments: json_rpc_named_arguments}}
end
@impl true
def handle_cast({:fetch_and_update, block_number, address}, state) do
result = fetch_and_update(block_number, address, state.json_rpc_named_arguments)
@ -78,18 +80,30 @@ defmodule Indexer.Fetcher.CoinBalanceOnDemand do
{:noreply, state}
end
@impl true
def handle_cast({:fetch_and_import, block_number, address}, state) do
fetch_and_import(block_number, address, state.json_rpc_named_arguments)
{:noreply, state}
end
@impl true
def handle_cast({:fetch_and_import_daily_balances, block_number, address}, state) do
fetch_and_import_daily_balances(block_number, address, state.json_rpc_named_arguments)
{:noreply, state}
end
@impl true
def handle_info({:DOWN, _, :process, _, _}, state) do
{:noreply, state}
end
@impl true
def handle_info({_ref, _}, state) do
{:noreply, state}
end
## Implementation
defp do_trigger_fetch(%Address{fetched_coin_balance_block_number: nil} = address, latest_block_number, _) do

Loading…
Cancel
Save