Skip to content

Commit

Permalink
use Config module instead of Mix.Config
Browse files Browse the repository at this point in the history
  • Loading branch information
izelnakri committed Dec 20, 2022
1 parent ca851a7 commit 2fcd303
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
use Mix.Config
import Config

# This configuration is loaded before any dependency and is restricted
# to this project. If another project depends on this project, this
Expand Down
2 changes: 1 addition & 1 deletion config/dev.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
use Mix.Config
import Config

config :ethereumex, url: "http://localhost:8545"
2 changes: 1 addition & 1 deletion config/test.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
use Mix.Config
import Config

config :ethereumex, url: "http://localhost:8545"

0 comments on commit 2fcd303

Please # to comment.