BidOrderBook
All the bids are stored in mapping Bids which maps _saleId to an array of BidOrder struct.
Each element of the array represents a bid with the last element as recent bid.
mapping(uint256 => LibBid.BidOrder[]) public Bids;
All the bids are stored in mapping Bids which maps _saleId to an array of BidOrder struct.
Each element of the array represents a bid with the last element as recent bid.
mapping(uint256 => LibBid.BidOrder[]) public Bids;