From f6a054273f2569c27c5ab322fe127d9f90bd63fe Mon Sep 17 00:00:00 2001 From: mm-zk Date: Mon, 18 Sep 2023 14:56:38 +0200 Subject: [PATCH] small rename --- bootloader/bootloader.yul | 2 +- scripts/process.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootloader/bootloader.yul b/bootloader/bootloader.yul index 043570ed..95d6337c 100644 --- a/bootloader/bootloader.yul +++ b/bootloader/bootloader.yul @@ -3,7 +3,7 @@ object "Bootloader" { } object "Bootloader_deployed" { code { - {{TEST_STATELESS}} + {{CODE_START_PLACEHOLDER}} /// @notice the address that will be the beneficiary of all the fees let OPERATOR_ADDRESS := mload(0) diff --git a/scripts/process.ts b/scripts/process.ts index aef44372..315535b9 100644 --- a/scripts/process.ts +++ b/scripts/process.ts @@ -227,7 +227,7 @@ async function main() { const bootloaderWithTests = await renderFile('bootloader/bootloader.yul', { ...params, - TEST_STATELESS: bootloaderTestUtils + "\n" + bootloaderTests + "\n" + testFramework + CODE_START_PLACEHOLDER: bootloaderTestUtils + "\n" + bootloaderTests + "\n" + testFramework }); const provedBootloaderWithTests = preprocess.preprocess(bootloaderWithTests, { BOOTLOADER_TYPE: 'proved_batch' });