Skip to content

Commit

Permalink
chore: missing error message
Browse files Browse the repository at this point in the history
address WP-N2
  • Loading branch information
Louis Bettens committed Sep 27, 2023
1 parent 43120e9 commit 9f2fe05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/GelatoVRFConsumerBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ abstract contract GelatoVRFConsumerBase is GelatoVRFConsumer {
uint256 randomness,
bytes calldata data
) external {
require(msg.sender == _operator());
require(msg.sender == _operator(), "only operator");
(uint64 requestId, bytes memory extraData) = abi.decode(
data,
(uint64, bytes)
Expand Down

0 comments on commit 9f2fe05

Please sign in to comment.