Skip to content

Commit c4758d1

Browse files
committed
use default 'password' to authenticate with wallet rpc server
1 parent e3946f3 commit c4758d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/haveno/core/xmr/wallet/XmrWalletService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1785,7 +1785,7 @@ private MoneroWalletRpc startWalletRpcInstance(Integer port, boolean applyProxyU
17851785
List<String> cmd = new ArrayList<>(Arrays.asList( // modifiable list
17861786
MONERO_WALLET_RPC_PATH,
17871787
"--rpc-login",
1788-
MONERO_WALLET_RPC_USERNAME + ":" + getWalletPassword(),
1788+
MONERO_WALLET_RPC_USERNAME + ":" + MONERO_WALLET_RPC_DEFAULT_PASSWORD,
17891789
"--wallet-dir", walletDir.toString()));
17901790

17911791
// omit --mainnet flag since it does not exist

0 commit comments

Comments
 (0)