mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
Add support for event funding_info_update.
This commit is contained in:
@@ -33,6 +33,7 @@ class AuthEventsHandler:
|
||||
"flc": "funding_loan_close",
|
||||
"ws": "wallet_snapshot",
|
||||
"wu": "wallet_update",
|
||||
"fiu": "funding_info_update",
|
||||
}
|
||||
|
||||
__SERIALIZERS: Dict[Tuple[str, ...], serializers._Serializer] = {
|
||||
@@ -43,6 +44,7 @@ class AuthEventsHandler:
|
||||
("fcs", "fcn", "fcu", "fcc"): serializers.FundingCredit,
|
||||
("fls", "fln", "flu", "flc"): serializers.FundingLoan,
|
||||
("ws", "wu"): serializers.Wallet,
|
||||
("fiu",): serializers.FundingInfo,
|
||||
}
|
||||
|
||||
def __init__(self, event_emitter: EventEmitter) -> None:
|
||||
|
||||
Reference in New Issue
Block a user