mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-11-10 05:03:35 +01:00
13 lines
668 B
Markdown
13 lines
668 B
Markdown
|
# Avoiding bitcoin-core regtest port conflicts
|
||
|
|
||
|
Some developers may already be running a `bitcoind` or `bitcoin-qt` instance in regtest mode when they try to run API
|
||
|
test cases. If a `bitcoin-qt` instance is bound to the default regtest port 18444, `apitest` will not be able to start
|
||
|
its own bitcoind instances.
|
||
|
|
||
|
Though it would be preferable for `apitest` to change the bind port for Bisq's `bitcoinj` module at runtime, this is
|
||
|
not currently possible because `bitcoinj` hardcodes the default regtest mode bind port in `RegTestParams`.
|
||
|
|
||
|
To avoid the bind address:port conflict, pass a port option to your bitcoin-core instance:
|
||
|
|
||
|
bitcoin-qt -regtest -port=20444
|