ruimarinho / bitcoin-core

A modern Bitcoin Core REST and RPC client.
477 stars 186 forks source link

bitcoin testnet connection ECONNREFUSED #111

Closed dnzhnshn closed 4 years ago

dnzhnshn commented 4 years ago

I can connect mainnet but can't testnet.

my client configration: var client = new Client({
network:'testnet',
host:'x.x.x.x', port:'18332', wallet: 'x.dat', username:'xxxx', password:'xxxxx', headers:true
});

my bitcoin.conf:

printtoconsole=1 rpcuser=xxxxx rpcpassword=xxxxx rpcbind=x.x.x.x rpcallowip=y.y.y.y txindex=1 server=1 testnet=1 listen=1 rpcport=18332 disablewallet=0

ERROR:Unhandled rejection Error: connect ECONNREFUSED x.x.x.x:18332 at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1056:14)

y.y.y.y is my node.js api IP. x.x.x.x is my bitcoin node IP.

I try connect docker container.

vincenzopalazzo commented 4 years ago

Your rpcbind is 0.0.0.0? look here https://github.com/ruimarinho/bitcoin-core/issues/108

dnzhnshn commented 4 years ago

tanx I solved problem.I could not ran bitcoind.