We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dbdf63 commit 7702b92Copy full SHA for 7702b92
packages/plugins/geth/src/gethClient.js
@@ -337,6 +337,7 @@ class GethClient {
337
if (self.isDev && self.config.unlockAddressList) {
338
// The first address is the dev account, that is automatically unlocked by the client using blank password
339
args.push("--unlock=" + self.config.unlockAddressList.slice(1));
340
+ args.push("--allow-insecure-unlock");
341
return callback(null, "--unlock=" + self.config.unlockAddressList.slice(1));
342
}
343
let accountAddress = "";
@@ -353,6 +354,7 @@ class GethClient {
353
354
}));
355
356
args.push("--unlock=" + accountAddress);
357
358
return callback(null, "--unlock=" + accountAddress);
359
360
callback(null, "");
0 commit comments