/balance should use cached tickers when possible

This commit is contained in:
Matthias
2021-04-13 20:09:22 +02:00
parent 82d66410f7
commit c2f35ce416
4 changed files with 27 additions and 3 deletions

View File

@@ -569,6 +569,8 @@ def test_rpc_balance_handle(default_conf, mocker, tickers):
result = rpc._rpc_balance(default_conf['stake_currency'], default_conf['fiat_display_currency'])
assert prec_satoshi(result['total'], 12.309096315)
assert prec_satoshi(result['value'], 184636.44472997)
assert tickers.call_count == 1
assert tickers.call_args.kwargs['cached'] is True
assert 'USD' == result['symbol']
assert result['currencies'] == [
{'currency': 'BTC',