From 7aafaa41960af0e4de788bd64cf9893f1a73d535 Mon Sep 17 00:00:00 2001 From: DcruBro Date: Fri, 3 Apr 2026 16:08:33 +0200 Subject: [PATCH] note --- include/block/block.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/block/block.h b/include/block/block.h index ff5b21a..9dab75b 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -22,7 +22,7 @@ typedef struct { typedef struct { block_header_t header; - DynArr* transactions; // Array of signed_transaction_t + DynArr* transactions; // Array of signed_transaction_t, NOTE: Potentially move to a hashmap at some point for quick lookups. } block_t; block_t* Block_Create();