From e696d0bb669c65ad37fba69416e68149ed4506e1 Mon Sep 17 00:00:00 2001 From: Olzhas <oljas.jarasbaev@demlabs.net> Date: Thu, 11 Jul 2024 13:00:02 +0700 Subject: [PATCH] [*] fix map size --- modules/chain/dap_chain_cell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chain/dap_chain_cell.c b/modules/chain/dap_chain_cell.c index e930eddcd9..a2f1d10a51 100644 --- a/modules/chain/dap_chain_cell.c +++ b/modules/chain/dap_chain_cell.c @@ -41,7 +41,7 @@ #define DAP_CHAIN_CELL_FILE_SIGNATURE 0xfa340bef153eba48 #define DAP_CHAIN_CELL_FILE_TYPE_RAW 0 #define DAP_CHAIN_CELL_FILE_TYPE_COMPRESSED 1 -#define DAP_MAPPED_VOLUME_LIMIT ( 1 << 20 ) // 256 MB for now, may be should be configurable? +#define DAP_MAPPED_VOLUME_LIMIT ( 1 << 28 ) // 256 MB for now, may be should be configurable? /** * @struct dap_chain_cell_file_header */ -- GitLab