Skip to content

Commit f609ae4

Browse files
authored
Merge pull request #917 from Phala-Network/wasm-size
Turn SideVM code size limit to 8MB
2 parents 8c6b01f + dc15579 commit f609ae4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

standalone/runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ impl pallet_stakepool::Config for Runtime {
12831283
impl pallet_fat::Config for Runtime {
12841284
type Event = Event;
12851285
type InkCodeSizeLimit = ConstU32<{1024*1024*2}>;
1286-
type SidevmCodeSizeLimit = ConstU32<{1024*1024*2}>;
1286+
type SidevmCodeSizeLimit = ConstU32<{1024*1024*8}>;
12871287
}
12881288

12891289
impl puppets::parachain_info::Config for Runtime {}

0 commit comments

Comments
 (0)