Increased memory buffer size to 10K

Since EIP-712 memory usage has increased
This commit is contained in:
Alexandre Paillier
2024-07-24 09:08:26 +02:00
parent 0309d1ef08
commit 223eff0cf8

View File

@@ -11,7 +11,7 @@
#include <stdint.h>
#include "mem.h"
#define SIZE_MEM_BUFFER 8192
#define SIZE_MEM_BUFFER 10240
static uint8_t mem_buffer[SIZE_MEM_BUFFER];
static size_t mem_idx;