make bids for lowest rather than highest

This commit is contained in:
2022-09-01 02:02:23 +00:00
parent 0d1513e35d
commit 8f4f5d270a
7 changed files with 30 additions and 30 deletions

View File

@@ -9,7 +9,7 @@ message Auction {
string index = 1;
string name = 2;
string description = 3;
Bid topBid = 4;
Bid best = 4;
uint64 deadline = 5;
}