Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions contracts/GraphTokenLockWallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down