Use rockicon method in new UI

This commit is contained in:
Franco Victorio 2018-07-26 13:26:51 -03:00
parent 24413cab69
commit 8bd2b04be7
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ IconFactory.prototype.generateIdenticonSvg = function (address, diameter) {
// creates a new identicon
IconFactory.prototype.generateNewIdenticon = function (address, diameter) {
var numericRepresentation = jsNumberForAddress(address)
var identicon = this.jazzicon(diameter, numericRepresentation)
var identicon = this.jazzicon.generateIdenticon(diameter, numericRepresentation)
return identicon
}