CAKE-18 | added btc to currency formatter

This commit is contained in:
Oleksandr Sobol 2020-07-27 14:30:48 +03:00
parent 1055c1b539
commit d5f707f652

View file

@ -4,6 +4,8 @@ String cryptoToString(CryptoCurrency crypto) {
switch (crypto) { switch (crypto) {
case CryptoCurrency.xmr: case CryptoCurrency.xmr:
return 'XMR'; return 'XMR';
case CryptoCurrency.btc:
return 'BTC';
default: default:
return ''; return '';
} }