Fix return
This commit is contained in:
parent
92f2edbf65
commit
5fb32c41b2
1 changed files with 2 additions and 1 deletions
|
|
@ -39,7 +39,8 @@ Wallet.prototype.log = function(){
|
||||||
};
|
};
|
||||||
|
|
||||||
Wallet.getRandomId = 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) {
|
Wallet.prototype._handlePublicKeyRing = function(senderId, data, isInbound) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue