Browse Source

core connection: default to cookie authentication when user/pass are not filled in

terminal
Craig Raw 3 years ago
parent
commit
3e47a49f49
  1. 2
      src/main/java/com/sparrowwallet/sparrow/net/Bwt.java

2
src/main/java/com/sparrowwallet/sparrow/net/Bwt.java

@ -112,7 +112,7 @@ public class Bwt {
Config config = Config.get();
bwtConfig.bitcoindUrl = config.getCoreServer();
if(config.getCoreAuthType() == CoreAuthType.COOKIE && config.getCoreDataDir() != null) {
if((config.getCoreAuthType() == CoreAuthType.COOKIE || config.getCoreAuth() == null || config.getCoreAuth().length() < 2) && config.getCoreDataDir() != null) {
bwtConfig.bitcoindDir = config.getCoreDataDir().getAbsolutePath() + "/";
} else {
bwtConfig.bitcoindAuth = config.getCoreAuth();

Loading…
Cancel
Save