don't tally highest bid in auction struct

This commit is contained in:
2022-08-28 02:37:27 +00:00
parent fcc85ec520
commit e33adb1dbf
5 changed files with 12 additions and 91 deletions

View File

@@ -10,6 +10,5 @@ message Auction {
string name = 2;
string description = 3;
repeated Bid bids = 4;
uint32 highestBid = 5; // INDEX of highest bid
}