mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
fix bitcoin core cookie dir not present npe
This commit is contained in:
parent
ac470f64c1
commit
095518e858
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public class Bwt {
|
||||||
|
|
||||||
Config config = Config.get();
|
Config config = Config.get();
|
||||||
bwtConfig.bitcoindUrl = config.getCoreServer();
|
bwtConfig.bitcoindUrl = config.getCoreServer();
|
||||||
if(config.getCoreAuthType() == CoreAuthType.COOKIE) {
|
if(config.getCoreAuthType() == CoreAuthType.COOKIE && config.getCoreDataDir() != null) {
|
||||||
bwtConfig.bitcoindDir = config.getCoreDataDir().getAbsolutePath() + "/";
|
bwtConfig.bitcoindDir = config.getCoreDataDir().getAbsolutePath() + "/";
|
||||||
} else {
|
} else {
|
||||||
bwtConfig.bitcoindAuth = config.getCoreAuth();
|
bwtConfig.bitcoindAuth = config.getCoreAuth();
|
||||||
|
|
Loading…
Reference in a new issue