Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1492 from EOSIO/wasm_memory_back_to_2mb
Browse files Browse the repository at this point in the history
Temporary reduction of wasm memory to 2MB
  • Loading branch information
b1bart authored Feb 27, 2018
2 parents d3f30a5 + 6462187 commit b7caac8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace IR {
namespace eosio { namespace chain {

namespace wasm_constraints {
constexpr unsigned maximum_linear_memory = 33*1024*1024;//bytes
constexpr unsigned maximum_linear_memory = 2*1024*1024;//bytes
constexpr unsigned maximum_mutable_globals = 1024; //bytes
constexpr unsigned maximum_table_elements = 1024; //elements
constexpr unsigned maximum_linear_memory_init = 64*1024; //bytes
Expand Down

0 comments on commit b7caac8

Please sign in to comment.