CAKE-18 | added btc to currency formatter

Oleksandr Sobol committed Jul 27, 2020 at 14:30 UTC d5f707f6520c0ca3315d46b584d96a4cff869db5
1 file changed +2
lib/src/domain/common/currency_formatter.dart
+2
@@ -4,6 +4,8 @@ String cryptoToString(CryptoCurrency crypto) {
4 switch (crypto) {
5 case CryptoCurrency.xmr:
6 return 'XMR';
7 + case CryptoCurrency.btc:
8 + return 'BTC';
9 default:
10 return '';
11 }