After
Width: | Height: | Size: 14 KiB
@ -24,7 +24,8 @@ const addCoinOptionsAC = () => {
'etomic',
'btch',
'beer',
'pizza'
'pizza',
'vote'
];
let _items = [];
@ -847,6 +847,7 @@ export const LANG_EN = {
'BTCH': 'BTCH (BTCH)',
'BEER': 'BEER (Test coin)',
'PIZZA': 'PIZZA (Test coin)',
'VOTE': 'VOTE (Notary Elections)',
},
'DEX': {
'GEN_NEW_PASSPHRASE': 'Generate a new passphrase',
@ -6,6 +6,10 @@ export function getCoinTitle(coin) {
let hideTitle = false;
switch (coin) {
case 'VOTE':
coinlogo = 'vote';
coinname = 'VOTE (Notary Elections)';
break;
case 'GRS':
coinlogo = 'grs';
coinname = 'Groestlcoin';