mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Merge pull request #5094 from chimp1984/fix-bug-with-ignoreLocalBtcNode
Fix bug with ignoreLocalBtcNode
This commit is contained in:
commit
2c348f7d7a
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ public class WalletConfig extends AbstractIdleService {
|
|||
|
||||
ProxySocketFactory proxySocketFactory = new ProxySocketFactory(proxy);
|
||||
// We don't use tor mode if we have a local node running
|
||||
BlockingClientManager blockingClientManager = config.ignoreLocalBtcNode ?
|
||||
BlockingClientManager blockingClientManager = localBitcoinNode.shouldBeUsed() ?
|
||||
new BlockingClientManager() :
|
||||
new BlockingClientManager(proxySocketFactory);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue