Added an order book getter to the OrderBook class

This commit is contained in:
Nelson R. Perez 2018-04-26 18:13:33 -05:00
parent e786e0ca31
commit 7eef0e9c1c

View file

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