Skip to content

Commit

Permalink
Fix parsing of 'account_index_exclude_keys' config option
Browse files Browse the repository at this point in the history
  • Loading branch information
riptl committed Feb 6, 2025
1 parent cfee86e commit 44592f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/fdctl/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ typedef struct {
ulong account_indexes_cnt;
char account_indexes[ 4 ][ 32 ];
ulong account_index_include_keys_cnt;
char account_index_include_keys[ 32 ][ 32 ];
char account_index_include_keys[ 32 ][ FD_BASE58_ENCODED_32_SZ ];
ulong account_index_exclude_keys_cnt;
char account_index_exclude_keys[ 32 ][ 32 ];
char account_index_exclude_keys[ 32 ][ FD_BASE58_ENCODED_32_SZ ];
char accounts_index_path[ PATH_MAX ];
char accounts_hash_cache_path[ PATH_MAX ];
int require_tower;
Expand Down

0 comments on commit 44592f9

Please sign in to comment.