Merge pull request #2106 from MyCryptoHQ/bug/enable-empty-trezor-passphrase

Remove empty check
This commit is contained in:
Connor Bryan 2018-08-15 15:06:01 -05:00 committed by GitHub
commit 6330698862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -35,7 +35,6 @@
var passphrase = "";
function unlockWithPassphrase() {
if (!passphrase.length) return;
ipcRenderer.send('$EVENT', passphrase);
}