Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion contracts/mocks/BouncerMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ contract SignatureBouncerMock is SignatureBouncer {
return isValidSignatureAndMethod(_address, _sig);
}

function onlyWithValidSignatureAndMethod(bytes _sig)
function onlyWithValidSignatureAndMethod(bytes memory _sig)
onlyValidSignatureAndMethod(_sig)
public
view
Expand Down
2 changes: 1 addition & 1 deletion contracts/ownership/rbac/RBAC.sol
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ contract RBAC {
* @param roleName the name of the role
* // reverts
*/
modifier onlyRole(string roleName)
modifier onlyRole(string memory roleName)
{
checkRole(msg.sender, roleName);
_;
Expand Down