Skip to content
Merged
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
13 changes: 13 additions & 0 deletions src/MultiSigContractV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,19 @@ contract MultiSigContractV2 is Ownable, ReentrancyGuard, Pausable {
uint256 reputation;
}

/**
* @notice Timelock operation structure
*/
struct TimelockOperation {
bytes32 id;
address target;
bytes data;
uint256 executeTime;
bool executed;
bool cancelled;
string description;
}

////////////////////
// Constructor //
////////////////////
Expand Down
Loading