Skip to content

Commit

Permalink
Merge pull request #3 from roodeag/main
Browse files Browse the repository at this point in the history
Correcting a misspelling of a word, insuefficient -> insufficient.
  • Loading branch information
0x1cc authored Mar 6, 2024
2 parents 259f94e + e3ef92c commit f53f52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/AIOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ contract AIOracle is IAIOracle {
bytes4 functionSelector,
uint64 gasLimit
) external payable {
require(msg.value >= fee, "insuefficient fee");
require(msg.value >= fee, "insufficient fee");
uint256 requestId = opml.initOpmlRequest(modelId, input);
// store the request so that anyone can update the result according to the opml
AICallbackRequestData storage request = requests[requestId];
Expand Down

0 comments on commit f53f52f

Please sign in to comment.