Skip to content

Commit 1f07be1

Browse files
committed
primitives - market - Status::usd_estimate to an Option
1 parent 2bac8a5 commit 1f07be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

primitives/src/market.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ impl fmt::Display for StatusType {
3535
pub struct Status {
3636
#[serde(rename = "name")]
3737
pub status_type: StatusType,
38-
pub usd_estimate: f32,
38+
pub usd_estimate: Option<f32>,
3939
#[serde(rename = "lastApprovedBalances")]
4040
pub balances: BalancesMap,
4141
#[serde(with = "ts_milliseconds")]

0 commit comments

Comments
 (0)