mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-05 12:14:26 -08:00
scaffold unlock-funds message
This commit is contained in:
@@ -10,6 +10,7 @@ service Msg {
|
||||
rpc NewAuction(MsgNewAuction) returns (MsgNewAuctionResponse);
|
||||
rpc NewBid(MsgNewBid) returns (MsgNewBidResponse);
|
||||
rpc LockFunds(MsgLockFunds) returns (MsgLockFundsResponse);
|
||||
rpc UnlockFunds(MsgUnlockFunds) returns (MsgUnlockFundsResponse);
|
||||
// this line is used by starport scaffolding # proto/tx/rpc
|
||||
}
|
||||
|
||||
@@ -43,4 +44,12 @@ message MsgLockFunds {
|
||||
message MsgLockFundsResponse {
|
||||
}
|
||||
|
||||
message MsgUnlockFunds {
|
||||
string creator = 1;
|
||||
string amount = 2;
|
||||
}
|
||||
|
||||
message MsgUnlockFundsResponse {
|
||||
}
|
||||
|
||||
// this line is used by starport scaffolding # proto/tx/message
|
||||
|
||||
Reference in New Issue
Block a user