Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions runtime/src/bank/builtins/core_bpf_migration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use {
/// Identifies the type of built-in program targeted for Core BPF migration.
/// The type of target determines whether the program should have a program
/// account or not, which is checked before migration.
#[derive(Debug)]
#[derive(Debug, PartialEq)]
pub(crate) enum CoreBpfMigrationTargetType {
/// A standard (stateful) builtin program must have a program account.
Builtin,
Expand All @@ -36,7 +36,7 @@ pub(crate) enum CoreBpfMigrationTargetType {
}

/// Configuration for migrating a built-in program to Core BPF.
#[derive(Debug)]
#[derive(Debug, PartialEq)]
pub(crate) struct CoreBpfMigrationConfig {
/// The program ID of the source program to be used to replace the builtin.
pub source_program_id: Pubkey,
Expand Down
Loading