From 5261075fd6e4ace745bbd002df427d5461878895 Mon Sep 17 00:00:00 2001 From: Vladislav Volosnikov Date: Mon, 30 Dec 2024 19:03:48 +0100 Subject: [PATCH] Simplify set constructing bytecode hash --- system-contracts/contracts/ContractDeployer.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-contracts/contracts/ContractDeployer.sol b/system-contracts/contracts/ContractDeployer.sol index f909e3fb0..6a41d91cd 100644 --- a/system-contracts/contracts/ContractDeployer.sol +++ b/system-contracts/contracts/ContractDeployer.sol @@ -567,7 +567,7 @@ contract ContractDeployer is IContractDeployer, SystemContractBase { } // 2. Set the constructed code hash on the account - _storeConstructingByteCodeHashOnAddress( + ACCOUNT_CODE_STORAGE_SYSTEM_CONTRACT.storeAccountConstructingCodeHash( _newAddress, // Dummy EVM bytecode hash just to call emulator. // The second byte is `0x01` to indicate that it is being constructed.