Merge branch 'master' into disable-replaced-transaction-fetcher

pull/1445/head
Andrew Cravenho 6 years ago committed by GitHub
commit 471cee10e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/explorer/mix.exs
  2. 7
      apps/explorer/priv/repo/migrations/20190214135850_add_index_on_block_number_to_address_token_balances.exs

@ -91,7 +91,7 @@ defmodule Explorer.Mixfile do
{:math, "~> 0.3.0"},
{:mock, "~> 0.3.0", only: [:test], runtime: false},
{:mox, "~> 0.4", only: [:test]},
{:poison, "~> 3.1", only: [:test]},
{:poison, "~> 3.1"},
{:postgrex, ">= 0.0.0"},
# For compatibility with `prometheus_process_collector`, which hasn't been updated yet
{:prometheus, "~> 4.0", override: true},

@ -0,0 +1,7 @@
defmodule Explorer.Repo.Migrations.AddIndexOnBlockNumberToAddressTokenBalances do
use Ecto.Migration
def change do
create(index(:address_token_balances, [:block_number]))
end
end
Loading…
Cancel
Save