Skip to content

Commit

Permalink
Patch at method using in BySig contract
Browse files Browse the repository at this point in the history
  • Loading branch information
zZoMROT committed May 9, 2024
1 parent 6ebcb32 commit 4d27b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/mixins/BySig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ abstract contract BySig is Context, EIP712 {
if (length == 0) {
return super._msgSender();
}
return _msgSenders.at(length - 1);
return _msgSenders.unsafeAt(length - 1);

Check warning on line 200 in contracts/mixins/BySig.sol

View check run for this annotation

Codecov / codecov/patch

contracts/mixins/BySig.sol#L200

Added line #L200 was not covered by tests
}

function _useNonce(address signer, BySigTraits.Value traits, bytes calldata data) private returns(bool) {
Expand Down

0 comments on commit 4d27b7e

Please sign in to comment.