Added an order book getter to the OrderBook class

develop
Nelson R. Perez 2018-04-26 18:13:33 -05:00
parent e786e0ca31
commit 7eef0e9c1c
1 changed files with 4 additions and 0 deletions

View File

@ -132,4 +132,8 @@ public class OrderBook {
}
return obtainedBase;
}
public List<LimitOrder> getLimitOrders(){
return limitOrders;
}
}