Skip to content

Commit 89b6cab

Browse files
authored
Merge pull request freqtrade#12998 from freqtrade/dependabot/pip/develop/ccxt-4.5.45
chore(deps): bump ccxt from 4.5.44 to 4.5.45
2 parents f91e71e + 326ef6d commit 89b6cab

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ft-pandas-ta==0.3.16
77
ta-lib==0.6.8
88
technical==1.5.4
99

10-
ccxt==4.5.44
10+
ccxt==4.5.45
1111
cryptography==46.0.6
1212
aiohttp==3.13.3
1313
SQLAlchemy==2.0.48

tests/exchange_online/conftest.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,7 @@ class TestExchangeOnlineSetup(TypedDict):
603603
"status": "closed",
604604
"type": "market",
605605
"amount": 0.0004,
606+
"filled": 0.0004,
606607
"side": "sell",
607608
"triggerPrice": None,
608609
"stopPrice": None,
@@ -646,6 +647,8 @@ class TestExchangeOnlineSetup(TypedDict):
646647
"price": None,
647648
"status": "open",
648649
"amount": 0.0004,
650+
# TODO: filled should be 0, not None.
651+
"filled": None,
649652
"side": "buy",
650653
"triggerPrice": 71641.0,
651654
"stopPrice": 71641.0,
@@ -681,8 +684,7 @@ class TestExchangeOnlineSetup(TypedDict):
681684
"datetime": "2026-03-21T07:32:21.555Z",
682685
"price": None,
683686
"status": "canceled",
684-
# TODO: filled should be 0, not None.
685-
"filled": None,
687+
"filled": 0.0,
686688
},
687689
},
688690
],

0 commit comments

Comments
 (0)