Skip to content

Commit

Permalink
Address Solidity warning in SignatureHelper.sol (#232)
Browse files Browse the repository at this point in the history
Removes unused vars.
  • Loading branch information
kevincheng96 authored Oct 18, 2024
1 parent 4e5ba95 commit dbbc365
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/lib/SignatureHelper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ contract SignatureHelper is Test {
if (signature.length != 65) {
revert InvalidSignatureLength();
}
bytes32 r;
bytes32 s;
uint8 v;
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
Expand Down

0 comments on commit dbbc365

Please sign in to comment.