From 68be7ddebf244279c2cfc9ad082ff2ed586cd4d3 Mon Sep 17 00:00:00 2001 From: Ilya Maykov Date: Mon, 24 Apr 2023 13:06:12 -0700 Subject: [PATCH] squashme: Add a comment --- core/include/checks.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/include/checks.h b/core/include/checks.h index c9d714de..ac496d74 100644 --- a/core/include/checks.h +++ b/core/include/checks.h @@ -37,6 +37,8 @@ int verify_conv_btc_to_satoshi(void); * Verifies that calling handle_incoming_message() with a serialized protobuf * message which exceeds nanopb field size limits (defined in proto .options * files) fails as expected. + * + * Note that as this function uses statically-allocated buffers, it is not thread-safe. */ int verify_rpc_oversized_message_rejected(void);