Emit 'signed' event when transaction is resigned

This commit is contained in:
wltsmrz
2014-01-07 10:17:58 -08:00
parent ca653c42f1
commit b44f22c87f

View File

@@ -296,6 +296,8 @@ Transaction.prototype.sign = function() {
this.tx_json.TxnSignature = hex;
this.previousSigningHash = hash;
this.emit('signed', this.hash());
return this;
};