Changes ports for bitcoind e2e and runs it earlier to give it time to boostrap

This commit is contained in:
Sergi Delgado Segura
2020-03-17 11:48:07 +01:00
parent 58dd2c7fe7
commit 0bc0426186
3 changed files with 14 additions and 14 deletions

View File

@@ -15,9 +15,9 @@ rpcallowip=0.0.0.0/0
rpcservertimeout=300
# [zmq]
zmqpubhashblock=tcp://0.0.0.0:28332
zmqpubrawblock=tcp://0.0.0.0:28332
zmqpubrawtx=tcp://0.0.0.0:28333
zmqpubhashblock=tcp://0.0.0.0:28335
zmqpubrawblock=tcp://0.0.0.0:28335
zmqpubrawtx=tcp://0.0.0.0:28336
# [blockchain]
txindex=1
@@ -25,4 +25,4 @@ txindex=1
# There are some parameters that only work in the specific on regtest if specified in the regtest section
[regtest]
rpcbind=0.0.0.0
rpcport=18443
rpcport=18445

View File

@@ -2,13 +2,13 @@
BTC_RPC_USER = "user"
BTC_RPC_PASSWD = "passwd"
BTC_RPC_HOST = "localhost"
BTC_RPC_PORT = 18443
BTC_RPC_PORT = 18445
BTC_NETWORK = "regtest"
# ZMQ
FEED_PROTOCOL = "tcp"
FEED_ADDR = "127.0.0.1"
FEED_PORT = 28332
FEED_PORT = 28335
# PISA
DATA_FOLDER = "~/.pisa_btc/"