From 04f205d447fbed26a9aa939d5d077e228a2448d9 Mon Sep 17 00:00:00 2001 From: Peter Grassberger Date: Mon, 12 Apr 2021 17:53:26 +0200 Subject: [PATCH] fix more typos in the same file --- apps/indexer/lib/indexer/fetcher/token_balance.ex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/indexer/lib/indexer/fetcher/token_balance.ex b/apps/indexer/lib/indexer/fetcher/token_balance.ex index 46602742be..fe32ac1943 100644 --- a/apps/indexer/lib/indexer/fetcher/token_balance.ex +++ b/apps/indexer/lib/indexer/fetcher/token_balance.ex @@ -1,10 +1,10 @@ defmodule Indexer.Fetcher.TokenBalance do @moduledoc """ - Fetches token balances and send the ones that were fetched to be imported in `Address.CurrentTokenBalance` and + Fetches token balances and sends the ones that were fetched to be imported in `Address.CurrentTokenBalance` and `Address.TokenBalance`. - The module responsible for fetching token balances in the Smart Contract is the `Indexer.TokenBalances`. this module - only prepare the params, send they to `Indexer.TokenBalances` and relies on its return. + The module responsible for fetching token balances in the Smart Contract is the `Indexer.TokenBalances`. This module + only prepares the params, sends them to `Indexer.TokenBalances` and relies on its return. It behaves as a `BufferedTask`, so we can configure the `max_batch_size` and the `max_concurrency` to control how many token balances will be fetched at the same time.