From 15c28092f61493acd70fa2e8065ea46b60c137af Mon Sep 17 00:00:00 2001 From: Chris Heaney Date: Thu, 19 Dec 2024 10:43:31 -0500 Subject: [PATCH] program: add mut to delete user signer --- programs/drift/src/instructions/user.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/drift/src/instructions/user.rs b/programs/drift/src/instructions/user.rs index 2516294dd..b5bb4c375 100644 --- a/programs/drift/src/instructions/user.rs +++ b/programs/drift/src/instructions/user.rs @@ -3523,6 +3523,7 @@ pub struct DeleteUser<'info> { pub user_stats: AccountLoader<'info, UserStats>, #[account(mut)] pub state: Box>, + #[account(mut)] pub authority: Signer<'info>, }