mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-05 04:54:25 -08:00
apply auction type updates to cli
This commit is contained in:
@@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user