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 6689bdf commit fa8e616Copy full SHA for fa8e616
src/lib.rs
@@ -61,6 +61,18 @@ pub fn fast_process_instruction(
61
}
62
};
63
64
+ #[cfg(feature = "unit_test_config")]
65
+ if matches!(
66
+ discriminator,
67
+ DlpDiscriminator::Delegate
68
+ | DlpDiscriminator::CommitState
69
+ | DlpDiscriminator::CommitStateFromBuffer
70
+ | DlpDiscriminator::Finalize
71
+ | DlpDiscriminator::Undelegate
72
+ ) {
73
+ msg!("Processing instruction: {:?}", discriminator);
74
+ }
75
+
76
match discriminator {
77
DlpDiscriminator::Delegate => Some(processor::fast::process_delegate(
78
program_id, accounts, data,
0 commit comments