We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36fb2d6 commit a346694Copy full SHA for a346694
magicblock-magic-program-api/src/instruction.rs
@@ -92,6 +92,8 @@ pub enum MagicBlockInstruction {
92
/// - **0.** `[SIGNER]` Validator authority
93
/// - **1.** `[WRITE]` Task context account
94
ProcessTasks,
95
+
96
+ ScheduleCommitDiffAndUndelegate,
97
}
98
99
impl MagicBlockInstruction {
programs/magicblock/src/magicblock_processor.rs
@@ -75,6 +75,9 @@ declare_process_instruction!(
75
MagicBlockInstruction::ProcessTasks => {
76
process_process_tasks(signers, invoke_context)
77
78
+ MagicBlockInstruction::ScheduleCommitDiffAndUndelegate => {
79
+ todo!();
80
+ }
81
82
83
);
0 commit comments