From 9264a92db36eb9eee7d28a5862729d410130be17 Mon Sep 17 00:00:00 2001 From: Luke Imhoff Date: Tue, 2 Oct 2018 12:13:10 -0500 Subject: [PATCH] remaning -> remaining --- apps/indexer/lib/indexer/block/catchup/fetcher.ex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/indexer/lib/indexer/block/catchup/fetcher.ex b/apps/indexer/lib/indexer/block/catchup/fetcher.ex index 0f9f7e75d1..be45a3080f 100644 --- a/apps/indexer/lib/indexer/block/catchup/fetcher.ex +++ b/apps/indexer/lib/indexer/block/catchup/fetcher.ex @@ -101,12 +101,12 @@ defmodule Indexer.Block.Catchup.Fetcher do end end - @async_import_remaning_block_data_options ~w(address_hash_to_fetched_balance_block_number transaction_hash_to_block_number)a + @async_import_remaining_block_data_options ~w(address_hash_to_fetched_balance_block_number transaction_hash_to_block_number)a @impl Block.Fetcher def import(_, options) when is_map(options) do - {async_import_remaning_block_data_options, chain_import_options} = - Map.split(options, @async_import_remaning_block_data_options) + {async_import_remaining_block_data_options, chain_import_options} = + Map.split(options, @async_import_remaining_block_data_options) with {:ok, results} = ok <- chain_import_options @@ -114,7 +114,7 @@ defmodule Indexer.Block.Catchup.Fetcher do |> Chain.import() do async_import_remaining_block_data( results, - async_import_remaning_block_data_options + async_import_remaining_block_data_options ) ok