Remove warning from config helper

pull/6922/head
Viktor Baranov 2 years ago
parent 65d7ad5b45
commit 99b6e5da3d
  1. 1
      config/config_helper.exs

@ -3,7 +3,6 @@ defmodule ConfigHelper do
basic_auth_user = System.get_env("ETHEREUM_JSONRPC_USER", "")
basic_auth_pass = System.get_env("ETHEREUM_JSONRPC_PASSWORD", nil)
hackney_opts =
[pool: :ethereum_jsonrpc]
|> (&if(System.get_env("ETHEREUM_JSONRPC_HTTP_INSECURE", "") == "true", do: [:insecure] ++ &1, else: &1)).()
|> (&if(basic_auth_user != "" && !is_nil(basic_auth_pass),

Loading…
Cancel
Save