Skip to content

Commit

Permalink
Removed unnecessary mutability
Browse files Browse the repository at this point in the history
  • Loading branch information
crnbarr93 committed Mar 21, 2024
1 parent f0865ff commit afd7718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/sumtree-orderbook/src/order.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn place_limit(
.unwrap_or_default();

// Build limit order
let mut limit_order = LimitOrder::new(
let limit_order = LimitOrder::new(
book_id,
tick_id,
order_id,
Expand Down

0 comments on commit afd7718

Please sign in to comment.