From 0c6dcc306d4a95ef0dc9e572b730bf56299c3452 Mon Sep 17 00:00:00 2001 From: Pablo Carranza Velez Date: Sat, 2 Sep 2023 11:36:13 -0300 Subject: [PATCH] fix: ensure GraphTokenLockWallet implementations are initialized --- contracts/GraphTokenLockWallet.sol | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/contracts/GraphTokenLockWallet.sol b/contracts/GraphTokenLockWallet.sol index 3ac24cb..8f32819 100644 --- a/contracts/GraphTokenLockWallet.sol +++ b/contracts/GraphTokenLockWallet.sol @@ -43,6 +43,13 @@ contract GraphTokenLockWallet is GraphTokenLock { event TokenDestinationsApproved(); event TokenDestinationsRevoked(); + /** + * @notice GraphTokenLockWallet constructor, only used to initialize the implementation contract + */ + constructor() { + isInitialized = true; + } + // Initializer function initialize( address _manager,