mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 22:34:21 +01:00
Rename property 'renew' to 'op_renew' in get_deposit_address.
This commit is contained in:
@@ -445,10 +445,10 @@ class RestAuthEndpoints(Middleware):
|
|||||||
def get_deposit_address(self,
|
def get_deposit_address(self,
|
||||||
wallet: str,
|
wallet: str,
|
||||||
method: str,
|
method: str,
|
||||||
renew: bool = False) -> Notification[DepositAddress]:
|
op_renew: bool = False) -> Notification[DepositAddress]:
|
||||||
return _Notification[DepositAddress](serializers.DepositAddress) \
|
return _Notification[DepositAddress](serializers.DepositAddress) \
|
||||||
.parse(*self._post("auth/w/deposit/address", \
|
.parse(*self._post("auth/w/deposit/address", \
|
||||||
body={ "wallet": wallet, "method": method, "renew": renew }))
|
body={ "wallet": wallet, "method": method, "op_renew": op_renew }))
|
||||||
|
|
||||||
def generate_deposit_invoice(self,
|
def generate_deposit_invoice(self,
|
||||||
wallet: str,
|
wallet: str,
|
||||||
|
|||||||
Reference in New Issue
Block a user