Skip to content

Commit

Permalink
update: made coprocessor caller internal
Browse files Browse the repository at this point in the history
  • Loading branch information
Nonnyjoe committed Dec 22, 2024
1 parent 459a0c6 commit 5fe3462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CoprocessorAdapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ abstract contract CoprocessorAdapter is ICoprocessorCallback {

/// @notice Issues a task to the coprocessor
/// @param input ABI-encoded input data for the coprocessor
function callCoprocessor(bytes calldata input) external {
function callCoprocessor(bytes calldata input) internal {
bytes32 inputHash = keccak256(input);
computationSent[inputHash] = true;
coprocessor.issueTask(machineHash, input, address(this));
Expand Down

0 comments on commit 5fe3462

Please sign in to comment.