Compare commits

...

2 Commits

Author SHA1 Message Date
Armani Ferrante fca07d4670
Remove zeros 2022-02-22 11:33:43 -05:00
Armani Ferrante b762c9ecdc
Update lib.rs 2022-02-22 11:31:29 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ pub struct CreateMultisig<'info> {
#[derive(Accounts)]
pub struct CreateTransaction<'info> {
multisig: Box<Account<'info, Multisig>>,
#[account(zero)]
#[account(zero, signer)]
transaction: Box<Account<'info, Transaction>>,
// One of the owners. Checked in the handler.
proposer: Signer<'info>,