From e834d03c61b5f1241d54313957236d3e77228aca Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Wed, 25 Dec 2024 22:29:31 +0100 Subject: [PATCH] typo fix oracle.h --- program/c/src/oracle/oracle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/c/src/oracle/oracle.h b/program/c/src/oracle/oracle.h index 05c62338..5841ccd9 100644 --- a/program/c/src/oracle/oracle.h +++ b/program/c/src/oracle/oracle.h @@ -248,7 +248,7 @@ static_assert( sizeof( pc_price_t ) == PC_EXPECTED_PRICE_T_SIZE_PYTHNET, "" ); // This constant needs to be an upper bound of the price account size, it is used within pythd for ztsd. -// It is set tighly to the current price account + 96 component prices + 48 bytes for cumulative sums +// It is set tightly to the current price account + 96 component prices + 48 bytes for cumulative sums const uint64_t ZSTD_UPPER_BOUND = 3312 + 96 * sizeof( pc_price_comp_t) + 48;