Skip to content

Commit

Permalink
update max memory to fit in usize on wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
iqdecay committed Jan 15, 2024
1 parent 7e69f27 commit 7629272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fuels-core/src/codec/abi_encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl Default for EncoderConfig {
Self {
max_depth: 45,
max_tokens: 10_000,
max_memory_size: 100_000_000_000,
max_memory_size: 4_000_000_000,
}
}
}
Expand Down

0 comments on commit 7629272

Please sign in to comment.