feat: Add migration for keyset_id as foreign key in SQLite database (#634)

This commit is contained in:
thesimplekid
2025-03-08 22:46:12 +00:00
committed by GitHub
parent 39a7b15221
commit 467cc0a027
4 changed files with 122 additions and 10 deletions

View File

@@ -37,4 +37,10 @@ pub enum Error {
/// Attempt to update state of spent proof
#[error("Attempt to update state of spent proof")]
AttemptUpdateSpentProof,
/// Proof not found
#[error("Proof not found")]
ProofNotFound,
/// Invalid keyset
#[error("Unknown or invalid keyset")]
InvalidKeysetId,
}