Skip to content

Commit

Permalink
Added privateBANKX 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 537a594 commit 0365ef4
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 @@ -875,6 +875,15 @@ var Currency = (function () {
verified: true
});

var PBKX = new Currency({
id: '39wcSXj4MdRNRJXA88rVxF7EXWjYixaA3J3EteoN6DMM',
displayName: 'privateBANKX',
shortName: 'PBKX',
symbol: 'PBKX',
precision: 0,
verified: true
});

function invalidateCache() {
currencyCache = {};

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

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

Expand Down
Loading

0 comments on commit 0365ef4

Please sign in to comment.