Merge pull request #7758 from blockscout/remove-limit-for-configurable-fetchers

Remove limit for configurable fetchers
pull/7759/head
Victor Baranov 1 year ago committed by GitHub
commit 7388c0f3f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 3
      apps/indexer/lib/indexer/fetcher/block_reward.ex
  3. 3
      apps/indexer/lib/indexer/fetcher/coin_balance.ex
  4. 3
      apps/indexer/lib/indexer/fetcher/internal_transaction.ex
  5. 3
      apps/indexer/lib/indexer/fetcher/token_instance/retry.ex

@ -6,6 +6,8 @@
### Fixes
- [#7758](https://github.com/blockscout/blockscout/pull/7758) - Remove limit for configurable fetchers
### Chore
<details>

@ -66,8 +66,7 @@ defmodule Indexer.Fetcher.BlockReward do
initial,
fn %{number: number}, acc ->
reducer.(number, acc)
end,
true
end
)
final

@ -67,8 +67,7 @@ defmodule Indexer.Fetcher.CoinBalance do
address_fields
|> entry()
|> reducer.(acc)
end,
true
end
)
final

@ -75,8 +75,7 @@ defmodule Indexer.Fetcher.InternalTransaction do
initial,
fn block_number, acc ->
reducer.(block_number, acc)
end,
true
end
)
final

@ -33,8 +33,7 @@ defmodule Indexer.Fetcher.TokenInstance.Retry do
initial_acc,
fn data, acc ->
reducer.(data, acc)
end,
true
end
)
acc

Loading…
Cancel
Save