Skip to content

Commit

Permalink
Added CryptoPing as a verified asset
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohunter committed Jun 20, 2017
1 parent 0365ef4 commit 7e62306
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
13 changes: 12 additions & 1 deletion distr/wavesplatform-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,15 @@ var Currency = (function () {
verified: true
});

var PING = new Currency({
id: 'Bi4w2UuGRt2jAJFfRb8b3SwDUV5x8krCzX2zZHcRfPNc',
displayName: 'CryptoPing',
shortName: 'PING',
symbol: 'PING',
precision: 8,
verified: true
});

function invalidateCache() {
currencyCache = {};

Expand All @@ -908,6 +917,7 @@ var Currency = (function () {
currencyCache[ETT.id] = ETT;
currencyCache[ZRC.id] = ZRC;
currencyCache[PBKX.id] = PBKX;
currencyCache[PING.id] = PING;
}

invalidateCache();
Expand Down Expand Up @@ -945,7 +955,8 @@ var Currency = (function () {
MGO: MGO,
ETT: ETT,
ZRC: ZRC,
PBKX: PBKX
PBKX: PBKX,
PING: PING
};
})();

Expand Down
Loading

0 comments on commit 7e62306

Please sign in to comment.