Fixed join wallet from remote peer

This commit is contained in:
Gustavo Cortez 2014-05-01 18:34:30 -03:00
commit c98323e9d3
4 changed files with 12 additions and 12 deletions

View file

@ -2,7 +2,7 @@
function Passphrase(config) {
config = config || {};
this.salt = config.storageSalt;
this.salt = config.storageSalt || 'mjuBtGybi/4=';
this.iterations = config.iterations || 1000;
};