Skip to content

Commit

Permalink
extend programs memory limits
Browse files Browse the repository at this point in the history
  • Loading branch information
breathx committed Nov 24, 2024
1 parent 8fc0309 commit e99ec55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethexe/runtime/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use core_processor::{
ContextChargedForCode, ContextChargedForInstrumentation, Ext, ProcessExecutionContext,
};
use gear_core::{
code::InstrumentedCode,
code::{InstrumentedCode, MAX_WASM_PAGES_AMOUNT},
ids::ProgramId,
memory::PageBuf,
message::{DispatchKind, IncomingDispatch, IncomingMessage},
Expand Down Expand Up @@ -156,7 +156,7 @@ where
existential_deposit: 0, // TODO
mailbox_threshold: 3000,
max_reservations: 50,
max_pages: 512.into(),
max_pages: MAX_WASM_PAGES_AMOUNT.into(),
outgoing_limit: 1024,
outgoing_bytes_limit: 64 * 1024 * 1024,
};
Expand Down

0 comments on commit e99ec55

Please sign in to comment.