scaffold unlock all funds msg

This commit is contained in:
2022-09-08 23:29:08 +00:00
parent 788062b3e6
commit 42bb8112ad
11 changed files with 557 additions and 28 deletions

View File

@@ -11,6 +11,7 @@ service Msg {
rpc NewBid(MsgNewBid) returns (MsgNewBidResponse);
rpc LockFunds(MsgLockFunds) returns (MsgLockFundsResponse);
rpc UnlockFunds(MsgUnlockFunds) returns (MsgUnlockFundsResponse);
rpc UnlockAllFunds(MsgUnlockAllFunds) returns (MsgUnlockAllFundsResponse);
// this line is used by starport scaffolding # proto/tx/rpc
}
@@ -52,4 +53,11 @@ message MsgUnlockFunds {
message MsgUnlockFundsResponse {
}
message MsgUnlockAllFunds {
string creator = 1;
}
message MsgUnlockAllFundsResponse {
}
// this line is used by starport scaffolding # proto/tx/message