From cd43a5592e317803de466cfab0135f1de16f1088 Mon Sep 17 00:00:00 2001 From: Alex Dovzhanyn Date: Thu, 13 Dec 2018 17:30:38 -0500 Subject: [PATCH] use newer version of core + update defaults.toml --- config/defaults.toml | 14 +++++++------- mix.exs | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/defaults.toml b/config/defaults.toml index 1c16251..d374280 100644 --- a/config/defaults.toml +++ b/config/defaults.toml @@ -1,12 +1,12 @@ # -------------- Configuration for Elixium Core -------------- [elixium_core] -# Maximum amount of inbound/outbound connections to have at any -# given moment -max_handlers = 10 - -# URL used to bootstrap node connections (fetch list of peers) -# on initial connection to the network -bootstrap_url = "https://registry.testnet.elixium.app/" +# Set of peer IPs which is used to make an initial connection to the network +seed_peers = [ + "206.189.103.38:31013", + "142.93.158.121:31013", + "142.93.152.227:31013", + "139.59.13.96:31013" +] # Path to store elixium related data (blocks, utxos, peers, etc) data_path = "~/.elixium" diff --git a/mix.exs b/mix.exs index e7ebce7..ef7657b 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ElixiumNode.MixProject do def project do [ app: :elixium_node, - version: "1.1.1", + version: "1.1.2", elixir: "~> 1.7", start_permanent: true, deps: deps() @@ -28,7 +28,7 @@ defmodule ElixiumNode.MixProject do # Run "mix help deps" to learn about dependencies. defp deps do [ - {:elixium_core, "~> 0.5"}, + {:elixium_core, "~> 0.6"}, {:poison, "~> 3.1"}, {:distillery, "~> 2.0"}, {:toml, "~> 0.5"},