Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
leecchh committed Apr 19, 2024
1 parent 540097f commit 4c48437
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions deepbook/sources/pool/pool.move
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module deepbook::pool {
coin::{Self, Coin, TreasuryCap},
clock::Clock,
sui::SUI,
linked_table::LinkedTable,
event,
};

Expand Down Expand Up @@ -136,7 +135,6 @@ module deepbook::pool {
asks: BigVector<Order>,
next_bid_order_id: u64, // increments for each bid order
next_ask_order_id: u64, // increments for each ask order
user_open_orders: Table<address, LinkedTable<u128, u128>>,
deep_config: Option<DeepPrice>,
users: Table<address, User>,

Expand Down Expand Up @@ -417,7 +415,6 @@ module deepbook::pool {
asks: big_vector::empty(10000, 1000, ctx),
next_bid_order_id: 0,
next_ask_order_id: 0,
user_open_orders: table::new(ctx),
users: table::new(ctx),
deep_config: option::none(),
tick_size,
Expand Down

0 comments on commit 4c48437

Please sign in to comment.