Skip to content

Commit e17b200

Browse files
[chore] Add status Property to Trade (#10)
1 parent 6d18e53 commit e17b200

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

cdp/trade.py

+10
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,16 @@ def to_amount(self) -> Decimal:
227227
"""
228228
return Decimal(self._model.to_amount) / Decimal(10) ** self._model.to_asset.decimals
229229

230+
@property
231+
def status(self) -> str:
232+
"""Get the status.
233+
234+
Returns:
235+
str: The status.
236+
237+
"""
238+
return self.transaction.status
239+
230240
@property
231241
def transaction(self) -> Transaction:
232242
"""Get the trade transaction."""

tests/test_trade.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def test_broadcast_trade(mock_api_clients, trade_factory):
193193
broadcast_trade_request=ANY,
194194
)
195195
assert isinstance(response, Trade)
196-
assert response.transaction.status.value == "broadcast"
196+
assert response.status.value == "broadcast"
197197
broadcast_trade_request = mock_broadcast.call_args[1]["broadcast_trade_request"]
198198
assert broadcast_trade_request.signed_payload == trade.transaction.signature
199199
assert (
@@ -224,7 +224,7 @@ def test_wait_for_trade(mock_time, mock_sleep, mock_api_clients, trade_factory):
224224

225225
result = pending_trade.wait(interval_seconds=0.2, timeout_seconds=1)
226226

227-
assert result.transaction.status.value == "complete"
227+
assert result.status.value == "complete"
228228
mock_get_trade.assert_called_with(
229229
wallet_id=pending_trade.wallet_id,
230230
address_id=pending_trade.address_id,

0 commit comments

Comments
 (0)