From 24269224ec6633d3c4a9cdaf8d69b58cde039075 Mon Sep 17 00:00:00 2001 From: Richard Patel Date: Thu, 6 Feb 2025 17:45:30 +0100 Subject: [PATCH] Fix parsing of 'account_index_exclude_keys' config option --- src/app/fdctl/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/fdctl/config.h b/src/app/fdctl/config.h index 01cc5d3596..0dbfbe605d 100644 --- a/src/app/fdctl/config.h +++ b/src/app/fdctl/config.h @@ -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;