We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6e8a38 commit 04d98ceCopy full SHA for 04d98ce
1 file changed
solidity/contracts/KeepRandomBeaconOperator.sol
@@ -155,7 +155,7 @@ contract KeepRandomBeaconOperator is ReentrancyGuard {
155
modifier onlyServiceContract() {
156
require(
157
serviceContracts.contains(msg.sender),
158
- "Caller not authorized contract"
+ "Caller is not a service contract"
159
);
160
_;
161
}
@@ -234,7 +234,7 @@ contract KeepRandomBeaconOperator is ReentrancyGuard {
234
235
// reimbursing a submitter that triggered group selection
236
(bool success, ) = stakingContract.magpieOf(submitter).call.value(groupSelectionStartFee)("");
237
- require(success, "Grp selection reimbursement fail");
+ require(success, "Group selection reimbursement failed");
238
239
240
function startGroupSelection(uint256 _newEntry, uint256 _payment) internal {
0 commit comments