From 281e865c2fe9f218d087c911a5f805b72485c3f8 Mon Sep 17 00:00:00 2001 From: Matthias Voppichler Date: Sat, 21 Apr 2018 23:05:41 +0200 Subject: [PATCH] Add BNB to cryptomap --- freqtrade/fiat_convert.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/fiat_convert.py b/freqtrade/fiat_convert.py index 2f2cb8666..1258ee149 100644 --- a/freqtrade/fiat_convert.py +++ b/freqtrade/fiat_convert.py @@ -76,7 +76,8 @@ class CryptoToFiatConverter(object): CRYPTOMAP = { 'BTC': 'bitcoin', 'ETH': 'ethereum', - 'USDT': 'thether' + 'USDT': 'thether', + 'BNB': 'binance-coin' } def __new__(cls):