From b259bc45e8278f4e8393a6e60b1bd813c6c25128 Mon Sep 17 00:00:00 2001 From: jeffro256 Date: Wed, 23 Apr 2025 10:14:11 -0500 Subject: [PATCH] carrot_core: change in/out limits --- src/carrot_core/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/carrot_core/config.h b/src/carrot_core/config.h index 486da6d6a..9cc9b3d9c 100644 --- a/src/carrot_core/config.h +++ b/src/carrot_core/config.h @@ -68,7 +68,7 @@ static constexpr const unsigned char CARROT_DOMAIN_SEP_SUBADDRESS_SCALAR[] = "Ca // Carrot misc constants static constexpr const unsigned int CARROT_MIN_TX_OUTPUTS = 2; -static constexpr const unsigned int CARROT_MAX_TX_OUTPUTS = 16; +static constexpr const unsigned int CARROT_MAX_TX_OUTPUTS = 8; static constexpr const unsigned int CARROT_MIN_TX_INPUTS = 1; -static constexpr const unsigned int CARROT_MAX_TX_INPUTS = 16; +static constexpr const unsigned int CARROT_MAX_TX_INPUTS = 8; } //namespace carrot