From 6199f7c96be0a1bf2e04b11655fff38269141fb8 Mon Sep 17 00:00:00 2001 From: Bogdan Kovtun Date: Mon, 5 Aug 2024 16:00:27 +0400 Subject: [PATCH] Add missing immutable initialization in Escrow --- contracts/Escrow.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/Escrow.sol b/contracts/Escrow.sol index 0a62d463..335519dd 100644 --- a/contracts/Escrow.sol +++ b/contracts/Escrow.sol @@ -109,6 +109,7 @@ contract Escrow is IEscrow { SanityCheckParams memory sanityCheckParams, ProtocolDependencies memory dependencies ) { + _SELF = address(this); DUAL_GOVERNANCE = dualGovernance; ST_ETH = dependencies.stETH;