Added an order book getter to the OrderBook class

develop
Nelson R. Perez 2018-04-26 18:13:33 -05:00
parent 42d5cb68eb
commit 0a4c0c0c9d
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;
}
}