Increase lp tokens calc process re-check interval

pull/3701/head
Viktor Baranov 4 years ago
parent a7a3d90efc
commit f6a56f895a
  1. 1
      CHANGELOG.md
  2. 2
      apps/indexer/lib/indexer/calc_lp_tokens_total_liquidity.ex
  3. 2
      apps/indexer/lib/indexer/set_omni_bridged_metadata_for_tokens.ex

@ -28,6 +28,7 @@
- [#3577](https://github.com/poanetwork/blockscout/pull/3577) - Eliminate GraphiQL page XSS attack
### Chore
- [#3701](https://github.com/poanetwork/blockscout/pull/3701) - Increase LP tokens calc process re-check interval
- [#3697](https://github.com/poanetwork/blockscout/pull/3697) - Update hackney dependency
- [#3696](https://github.com/poanetwork/blockscout/pull/3696) - Table loader fix
- [#3688](https://github.com/poanetwork/blockscout/pull/3688) - Reorganize staking buttons

@ -9,7 +9,7 @@ defmodule Indexer.CalcLpTokensTotalLiqudity do
alias Explorer.Chain
@interval :timer.minutes(10)
@interval :timer.minutes(20)
def start_link([init_opts, gen_server_opts]) do
start_link(init_opts, gen_server_opts)

@ -9,7 +9,7 @@ defmodule Indexer.SetOmniBridgedMetadataForTokens do
alias Explorer.Chain
@interval :timer.minutes(1)
@interval :timer.minutes(10)
def start_link([init_opts, gen_server_opts]) do
start_link(init_opts, gen_server_opts)

Loading…
Cancel
Save