File tree 1 file changed +3
-3
lines changed
octobot_trading/exchanges/connectors/ccxt
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -510,13 +510,13 @@ def get_fees(self, symbol):
510
510
return {
511
511
enums .ExchangeConstantsMarketPropertyColumns .TAKER .value :
512
512
market_status .get (enums .ExchangeConstantsMarketPropertyColumns .TAKER .value ,
513
- constants .CONFIG_DEFAULT_FEES ) ,
513
+ ) or constants .CONFIG_DEFAULT_FEES ,
514
514
enums .ExchangeConstantsMarketPropertyColumns .MAKER .value :
515
515
market_status .get (enums .ExchangeConstantsMarketPropertyColumns .MAKER .value ,
516
- constants .CONFIG_DEFAULT_FEES ) ,
516
+ ) or constants .CONFIG_DEFAULT_FEES ,
517
517
enums .ExchangeConstantsMarketPropertyColumns .FEE .value :
518
518
market_status .get (enums .ExchangeConstantsMarketPropertyColumns .FEE .value ,
519
- constants .CONFIG_DEFAULT_FEES )
519
+ ) or constants .CONFIG_DEFAULT_FEES
520
520
}
521
521
except ccxt .NotSupported :
522
522
raise octobot_trading .errors .NotSupported
You can’t perform that action at this time.
0 commit comments