Merge vbuterin/master

This commit is contained in:
Kyle Drake 2014-02-02 11:33:46 -08:00
commit cb3653105a
5 changed files with 7 additions and 4 deletions

View file

@ -14,6 +14,7 @@ var SecureRandom = require('./jsbn/rng');
var rng = new SecureRandom();
var Wallet = function (seed) {
if (!(this instanceof Wallet)) { return new Wallet(seed); }
// Stored in a closure to make accidental serialization less likely
var keys = [];