-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge reason into one file, add withdrawal reason
- Loading branch information
Showing
9 changed files
with
84 additions
and
72 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
syntax = "proto3"; | ||
|
||
package cmp.services.cancellation.v1; | ||
|
||
import "cmp/types/v1/common.proto"; | ||
|
||
// Request for withdrawal of an active cancellation proposal | ||
message WithdrawCancellationRequest { | ||
// Request header | ||
cmp.types.v1.RequestHeader header = 1; | ||
|
||
// Cancellation token ID | ||
uint64 token_id = 2; | ||
} | ||
|
||
// Response for withdrawal of an active cancellation proposal | ||
message WithdrawCancellationResponse { | ||
// Response header | ||
cmp.types.v1.ResponseHeader header = 1; | ||
|
||
// Transaction ID on-chain for withdrawing the cancellation proposal. This | ||
// transaction proves the withdrawal of the cancellation proposal on-chain to | ||
// avoid disputes. | ||
string transaction_id = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters