We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 563cc80 commit 8edffd1Copy full SHA for 8edffd1
coinbase/mock.py
@@ -33,6 +33,7 @@ def __init__(self):
33
self._orders_by_custom = {} # button custom string -> CoinbaseOrder.id
34
35
self.authenticated = True
36
+ self.auth = None
37
self.allow_transfers = True
38
39
self.balance = CoinbaseAmount('0', 'BTC')
@@ -44,9 +45,6 @@ def __init__(self):
44
45
46
self.mock = MockControl(account=self)
47
- def refresh_oauth(self):
48
- pass
49
-
50
def get_exchange_rate(self, from_currency, to_currency):
51
return self.exchange_rates['{}_to_{}'.format(
52
from_currency.lower(),
0 commit comments