apply auction type updates to cli

This commit is contained in:
2022-09-02 21:58:22 +00:00
parent 75c051af04
commit c1ee2ec7a8
4 changed files with 16 additions and 7 deletions

View File

@@ -9,12 +9,14 @@ const TypeMsgNewAuction = "new_auction"
var _ sdk.Msg = &MsgNewAuction{}
func NewMsgNewAuction(creator string, name string, description string, denom string) *MsgNewAuction {
func NewMsgNewAuction(creator string, name string, description string, ceiling string, denom string, leaseEnd uint64) *MsgNewAuction {
return &MsgNewAuction{
Creator: creator,
Name: name,
Description: description,
Ceiling: ceiling,
Denom: denom,
LeaseEnd: leaseEnd,
}
}