Fix return

This commit is contained in:
Gustavo Cortez 2014-04-24 15:49:37 -03:00
commit 5fb32c41b2

View file

@ -39,7 +39,8 @@ Wallet.prototype.log = function(){
};
Wallet.getRandomId = function() {
return bitcore.SecureRandom.getPseudoRandomBuffer(8);
var r = bitcore.SecureRandom.getPseudoRandomBuffer(8).toString('hex');
return r;
};
Wallet.prototype._handlePublicKeyRing = function(senderId, data, isInbound) {