From 6096fe5dc58c4407a1a95b2548aed06b74276bf2 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Mon, 23 Mar 2020 17:25:52 +0100 Subject: [PATCH] Fixes config templates Removes quotation marks ("") from strings in the template config files --- cli/template.conf | 2 +- teos/template.conf | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cli/template.conf b/cli/template.conf index 48d61fc..b53fb45 100644 --- a/cli/template.conf +++ b/cli/template.conf @@ -1,4 +1,4 @@ [teos] -TEOS_SERVER = "localhost" +TEOS_SERVER = localhost TEOS_PORT = 9814 diff --git a/teos/template.conf b/teos/template.conf index e8f5b76..88e4df5 100644 --- a/teos/template.conf +++ b/teos/template.conf @@ -1,13 +1,13 @@ [bitcoind] -btc_rpc_user = "user" -btc_rpc_passwd = "passwd" -btc_rpc_connect = "localhost" +btc_rpc_user = user +btc_rpc_passwd = passwd +btc_rpc_connect = localhost btc_rpc_port = 8332 -btc_network = "mainnet" +btc_network = mainnet # [zmq] -feed_protocol = "tcp" -feed_connect = "127.0.0.1" +feed_protocol = tcp +feed_connect = 127.0.0.1 feed_port = 28332 [teos]