From d232ef3e9d14a419b3d797c29e8c7dae0b8757a4 Mon Sep 17 00:00:00 2001 From: Nisheeth Barthwal Date: Mon, 9 Sep 2024 14:35:18 +0200 Subject: [PATCH] fix mdbook test --- src/zksync-specifics/limitations/compilation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zksync-specifics/limitations/compilation.md b/src/zksync-specifics/limitations/compilation.md index 0aceb29e9..f032dec25 100644 --- a/src/zksync-specifics/limitations/compilation.md +++ b/src/zksync-specifics/limitations/compilation.md @@ -25,9 +25,9 @@ contract FooTest is Test { `zksolc` currently limits the number of instructions to 2^16 that are compiled for a contract. As such for large contracts, the compilation will fail with the error: -``` +```bash Error: assembly-to-bytecode conversion: assembly parse error Label DEFAULT_UNWIND was tried to be used -for either PC or constant at offset 65947 that is more than `65535` addressable space +for either PC or constant at offset 65947 that is more than 65535 addressable space ``` As an attempt the same contract can be compiled with `--zk-force-evmla=true`, but if it doesn't help then the contract must be split into smaller units. \ No newline at end of file