Skip to content
Merged
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
6 changes: 3 additions & 3 deletions programs/squads_multisig_program/src/state/spending_limit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ pub struct SpendingLimit {
/// PDA bump.
pub bump: u8,

/// Members of the multisig that can use the spending limit.
/// In case a member is removed from the multisig, the spending limit will remain existent
/// (until explicitly deleted), but the removed member will not be able to use it anymore.
/// Members of the spending limit that can use it.
/// Don't have to be members of the multisig.
/// To remove members from the spending limit: Close and re-initialize
pub members: Vec<Pubkey>,

/// The destination addresses the spending limit is allowed to sent funds to.
Expand Down