Added get_interest template method in exchange

This commit is contained in:
Sam Germain
2021-07-25 23:40:38 -06:00
parent 120cad88af
commit b48b768757
2 changed files with 13 additions and 3 deletions

View File

@@ -2177,7 +2177,7 @@ def test_get_historic_trades_notsupported(default_conf, mocker, caplog, exchange
pair = 'ETH/BTC'
with pytest.raises(OperationalException,
match="This exchange does not suport downloading Trades."):
match="This exchange does not support downloading Trades."):
exchange.get_historic_trades(pair, since=trades_history[0][0],
until=trades_history[-1][0])