Skip to content

Commit 284a8f4

Browse files
authored
Merge pull request #14 from ZeroKnowledgeNetwork/fix/walletshield-listen-defaults
fix: handle all cases of walletshield listen address default
2 parents ff53fb9 + 2c6081f commit 284a8f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Networks.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export function Networks() {
148148
////////////////////////////////////////////////////////////////////////
149149
setMessage("info", "Starting network client...");
150150
const cmd = "walletshield";
151-
const wla = walletshieldListenAddress ?? defaultWalletshieldListenAddress;
151+
const wla = walletshieldListenAddress || defaultWalletshieldListenAddress;
152152
const args = ["-listen", wla, "-config", "client.toml"];
153153
const command = Command.create("walletshield-listen", args, {
154154
cwd: dirNetwork,

0 commit comments

Comments
 (0)