mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Merge pull request #3127 from devinbileck/activate-dao-preferences
Fix incorrect DAO full node check when loading PreferencesView
This commit is contained in:
commit
b43a006832
@ -834,8 +834,8 @@ public class PreferencesView extends ActivatableViewAndModel<GridPane, Preferenc
|
||||
String rpcPw = preferences.getRpcPw();
|
||||
int blockNotifyPort = preferences.getBlockNotifyPort();
|
||||
if (daoFullNode && (rpcUser == null || rpcUser.isEmpty() ||
|
||||
rpcPw == null || rpcPw.isEmpty()) ||
|
||||
blockNotifyPort <= 0) {
|
||||
rpcPw == null || rpcPw.isEmpty() ||
|
||||
blockNotifyPort <= 0)) {
|
||||
log.warn("You have full DAO node selected but have not provided the rpc username, password and " +
|
||||
"block notify port. We reset daoFullNode to false");
|
||||
isDaoFullNodeToggleButton.setSelected(false);
|
||||
|
Loading…
Reference in New Issue
Block a user