Skip to content

Commit

Permalink
Remove commented lines
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieraykatz committed Mar 20, 2024
1 parent 05c85c7 commit 294b395
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/IsValidWithdrawSignature.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ contract IsValidWithdrawalSignature is MagicSpendTest {
function test_returnsTrueWithValidSignature() public {
asset = address(token);
MagicSpend.WithdrawRequest memory request = _getRequest();
// bytes32 hash = magic.getHash(withdrawer, request);
bool success = magic.isValidWithdrawSignature(withdrawer, request);
assert(success);
}
Expand All @@ -20,7 +19,6 @@ contract IsValidWithdrawalSignature is MagicSpendTest {
asset = address(token);
address invalidSender = address(0xdead);
MagicSpend.WithdrawRequest memory request = _getRequest();
// bytes32 hash = magic.getHash(withdrawer, request);
bool success = magic.isValidWithdrawSignature(invalidSender, request);
assertFalse(success);
}
Expand Down

0 comments on commit 294b395

Please sign in to comment.