tx broadcasting working

This commit is contained in:
Matias Alejo Garcia 2014-04-16 22:12:30 -03:00
commit df23125f5e
6 changed files with 41 additions and 14 deletions

View file

@ -114,7 +114,10 @@ WalletFactory.prototype.create = function(opts) {
};
WalletFactory.prototype.open = function(walletId) {
var w = this.read(walletId) || this.create({id: walletId});
var w = this.read(walletId) || this.create({
id: walletId,
verbose: this.verbose,
});
return w;
};