add deadline to auctions

This commit is contained in:
2022-09-01 19:13:17 +00:00
parent 5d71effb7f
commit 338b7d075a
8 changed files with 144 additions and 41 deletions

View File

@@ -14,4 +14,5 @@ message Auction {
string ceiling = 6;
string denom = 7;
string owner = 8;
uint64 leaseEnd = 9;
}

View File

@@ -18,6 +18,7 @@ message MsgNewAuction {
string description = 3;
string ceiling = 4;
string denom = 5;
uint64 leaseEnd = 6;
}
message MsgNewAuctionResponse {