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
12 changes: 6 additions & 6 deletions src/flamenco/features/fd_features.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ typedef union fd_features fd_features_t;
offset in fd_features_t. */

struct fd_feature_id {
ulong index; /* index of feature in fd_features_t */
fd_pubkey_t id; /* pubkey of feature */
char const * name; /* feature name cstr */
uint cleaned_up[3]; /* cleaned_up cluster version for feature */
uchar reverted; /* if the feature was reverted */
uchar activated_on_all_clusters; /* if the feature was activated on all clusters (currently only used for fuzzing) */
ulong index; /* index of feature in fd_features_t */
fd_pubkey_t id; /* pubkey of feature */
char const * name; /* feature name cstr */
uint cleaned_up[3]; /* cleaned_up cluster version for feature */
uchar reverted; /* if the feature was reverted */
uchar hardcode_for_fuzzing; /* if the should be treated as hardcoded in the firedancer fuzzing harness */
};
typedef struct fd_feature_id fd_feature_id_t;

Expand Down
Loading
Loading