Browse Source

Set hardcoded LND password on user register

hardcoded-lnd-password
Luke Childs 4 years ago
parent
commit
58feca416b
  1. 2
      logic/auth.js

2
logic/auth.js

@ -230,7 +230,7 @@ async function register(user, seed) {
//initialize lnd wallet
try {
await lndApiService.initializeWallet(user.plainTextPassword, seed, jwt);
await lndApiService.initializeWallet('moneyprintergobrrr', seed, jwt);
} catch (error) {
await diskLogic.deleteUserFile();
throw new NodeError(error.response.data);

Loading…
Cancel
Save