Skip to content

Commit

Permalink
Fix WithdrawalBundleEventType
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-L2L committed Oct 3, 2024
1 parent b612458 commit be0f53e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions proto/cusf/mainchain/v1/mainchain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ message Deposit {
}

enum WithdrawalBundleEventType {
WITHDRAWAL_BUNDLE_EVENT_TYPE_SUBMITTED_UNSPECIFIED = 0;
WITHDRAWAL_BUNDLE_EVENT_TYPE_FAILED = 1;
WITHDRAWAL_BUNDLE_EVENT_TYPE_SUCCEDED = 2;
WITHDRAWAL_BUNDLE_EVENT_TYPE_UNSPECIFIED = 0;
WITHDRAWAL_BUNDLE_EVENT_TYPE_SUBMITTED = 1;
WITHDRAWAL_BUNDLE_EVENT_TYPE_FAILED = 2;
WITHDRAWAL_BUNDLE_EVENT_TYPE_SUCCEDED = 3;
}

message WithdrawalBundleEvent {
Expand Down

0 comments on commit be0f53e

Please sign in to comment.