Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions programs/squads_smart_account_program/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ pub enum SmartAccountError {
ProgramInteractionTooManyInstructionConstraints,
#[msg("Program interaction constraint violation: too many spending limits. Max is 10")]
ProgramInteractionTooManySpendingLimits,
#[msg("Program interaction constraint violation: invalid pubkey table index")]
ProgramInteractionInvalidPubkeyTableIndex,
#[msg("Program interaction constraint violation: too many unique pubkeys. Max is 240 (indices 240-255 reserved for builtin programs)")]
ProgramInteractionTooManyUniquePubkeys,
#[msg("Program interaction hook violation: template hook error")]
ProgramInteractionTemplateHookError,
#[msg("Program interaction hook violation: hook authority cannot be part of hook accounts")]
Expand Down
Loading