mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-11-27 06:56:26 -05:00
668 B
668 B
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