mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Allow to set fullNode if isBmFullNode and rpcDataSet is true even if BurningManService.isActivated() is false.
This allows us to run the seed nodes already in BM mode before activation Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
9a31606fea
commit
5b38e5b83b
@ -48,10 +48,10 @@ public class AccountingNodeProvider {
|
||||
&& preferences.getRpcPw() != null &&
|
||||
!preferences.getRpcPw().isEmpty() &&
|
||||
preferences.getBlockNotifyPort() > 0;
|
||||
if (BurningManService.isActivated()) {
|
||||
accountingNode = isBmFullNode && rpcDataSet ? fullNode : liteNode;
|
||||
if (isBmFullNode && rpcDataSet) {
|
||||
accountingNode = fullNode;
|
||||
} else {
|
||||
accountingNode = inActiveAccountingNode;
|
||||
accountingNode = BurningManService.isActivated() ? liteNode : inActiveAccountingNode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user