Add ZMQ support (#125)

* Update bitcoin.conf

* Update elements.conf

* Update bitcoin.conf

* Update docker-compose.yml

* Update docker-compose.yml
This commit is contained in:
Marco Argentieri
2021-11-24 12:52:15 +01:00
committed by GitHub
parent bacdb43f2d
commit 6088a439cd
3 changed files with 14 additions and 3 deletions

View File

@@ -15,3 +15,6 @@ rpcpassword=123
rpcallowip=0.0.0.0/0
rpcbind=0.0.0.0
fallbackfee=0.00001
zmqpubrawblock=tcp://0.0.0.0:28332
zmqpubrawtx=tcp://0.0.0.0:28333

View File

@@ -9,6 +9,9 @@ services:
ports:
- 18443:18443
- 18444:18444
# ZMQ
- 28332:28332
- 28333:28333
volumes:
- ./volumes/bitcoin/:/config
restart: unless-stopped
@@ -21,6 +24,9 @@ services:
ports:
- 18884:18884
- 18886:18886
# ZMQ
- 38332:38332
- 38333:38333
volumes:
- ./volumes/elements/:/config
restart: unless-stopped

View File

@@ -11,7 +11,6 @@ rpcallowip=0.0.0.0/0
rpcbind=0.0.0.0
mainchainrpcport=18443
#mainchainrpchost=10.10.0.10
mainchainrpcuser=admin1
mainchainrpcpassword=123
@@ -41,6 +40,9 @@ con_dyna_deploy_signal=1
con_nminerconfirmationwindow=1
con_nrulechangeactivationthreshold=1
## Taproot signaling
con_taproot_signal_start=0
con_taproot_signal_start=0
## ZMQ
zmqpubrawblock=tcp://0.0.0.0:38332
zmqpubrawtx=tcp://0.0.0.0:38333