Commit d5600eb8 authored by Maurelian's avatar Maurelian

chore(ctb): Remove todo note from LivenessGuard

parent 0493c40b
...@@ -85,9 +85,6 @@ contract LivenessGuard is ISemver, GetSigners, BaseGuard { ...@@ -85,9 +85,6 @@ contract LivenessGuard is ISemver, GetSigners, BaseGuard {
address[] memory signers = new address[](1); address[] memory signers = new address[](1);
signers[0] = msg.sender; signers[0] = msg.sender;
// todo(maurelian): Is there any need for this event to be differentiated from the one emitted in
// checkTransaction?
// Technically the 0x0 txHash does serve to identiy a call to this method.
emit SignersRecorded(0x0, signers); emit SignersRecorded(0x0, signers);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment