Skip to content

Commit

Permalink
Cleanup order events
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Oct 22, 2024
1 parent 70f1b92 commit 54c02bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nautilus_core/model/src/events/order/cancel_rejected.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ impl OrderEvent for OrderCancelRejected {
}

fn commission(&self) -> Option<Money> {
todo!()
None
}

fn ts_event(&self) -> UnixNanos {
Expand Down
2 changes: 1 addition & 1 deletion nautilus_core/model/src/events/order/canceled.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ impl OrderEvent for OrderCanceled {
}

fn currency(&self) -> Option<Currency> {
todo!()
None
}

fn client_order_id(&self) -> ClientOrderId {
Expand Down
2 changes: 1 addition & 1 deletion nautilus_core/model/src/events/order/released.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ impl OrderEvent for OrderReleased {
}

fn liquidity_side(&self) -> Option<LiquiditySide> {
todo!()
None
}

fn post_only(&self) -> Option<bool> {
Expand Down

0 comments on commit 54c02bf

Please sign in to comment.