Fixes config templates

Removes quotation marks ("") from strings in the template config files
This commit is contained in:
Sergi Delgado Segura
2020-03-23 17:25:52 +01:00
parent d2fbcf61e3
commit 6096fe5dc5
2 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
[teos]
TEOS_SERVER = "localhost"
TEOS_SERVER = localhost
TEOS_PORT = 9814

View File

@@ -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]