Skip to content

Commit

Permalink
added ProofState
Browse files Browse the repository at this point in the history
  • Loading branch information
gohumble committed May 9, 2024
1 parent ccff294 commit b5b251f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions proofs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ A proof is SPENT if it has been redeemed and its secret is in the list of spent
*/

enum ProofState {
unspecified = 0;
UNSPENT = 1;
PENDING = 2;
SPENT = 3;
PROOF_STATE_UNSPECIFIED = 0;
PROOF_STATE_UNSPENT = 1;
PROOF_STATE_PENDING = 2;
PROOF_STATE_SPENT = 3;
}

message Proof {
Expand Down

0 comments on commit b5b251f

Please sign in to comment.