Merge pull request #1448 from freqtrade/wallet_remove_wrong_namedtuple

Remove unused and duplicate datastructure
This commit is contained in:
Misagh 2018-12-30 12:09:06 +01:00 committed by GitHub
commit b321c66654
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,12 +2,12 @@
""" Wallet """
import logging
from typing import Dict, Any, NamedTuple
from collections import namedtuple
from freqtrade.exchange import Exchange
logger = logging.getLogger(__name__)
# wallet data structure
class Wallet(NamedTuple):
exchange: str
currency: str
@ -18,12 +18,6 @@ class Wallet(NamedTuple):
class Wallets(object):
# wallet data structure
wallet = namedtuple(
'wallet',
['exchange', 'currency', 'free', 'used', 'total']
)
def __init__(self, exchange: Exchange) -> None:
self.exchange = exchange
self.wallets: Dict[str, Any] = {}