temoporarily changed DAG size for testing, fix TX loading, move some TX logic to Transaction_Init()

This commit is contained in:
2026-04-03 15:20:13 +02:00
parent b83f52a448
commit ae64bb9dfc
6 changed files with 30 additions and 7 deletions

View File

@@ -52,6 +52,10 @@ block_t* Block_Create() {
free(block);
return NULL;
}
// Zero out padding
memset(block->header.reserved, 0, sizeof(block->header.reserved));
return block;
}