Skip to content

Commit

Permalink
feat: increase size limit to 128k of return data
Browse files Browse the repository at this point in the history
  • Loading branch information
magicalne authored and jjyr committed Oct 25, 2022
1 parent c28c86f commit 86a81b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/generator/src/syscalls/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub mod error_codes;

/* Constants */
// 25KB is max ethereum contract code size
const MAX_SET_RETURN_DATA_SIZE: u64 = 1024 * 25;
const MAX_SET_RETURN_DATA_SIZE: u64 = 1024 * 128;

/* Syscall account store / load / create */
const SYS_CREATE: u64 = 3100;
Expand Down

0 comments on commit 86a81b6

Please sign in to comment.