adding message publicKeyRingUpdated

This commit is contained in:
Matias Pando 2014-10-29 14:53:52 -03:00
commit 31cab73193
2 changed files with 14 additions and 1 deletions

View file

@ -390,6 +390,10 @@ Identity.prototype.bindWallet = function(w) {
log.debug('<addressBookUpdated> Wallet' + w.getName());
self.storeWallet(w);
});
w.on('publicKeyRingUpdated', function() {
log.debug('<publicKeyRingUpdated> Wallet' + w.getName());
self.storeWallet(w);
});
};
/**