Skip to content

Commit

Permalink
fix compiler warning due to unused function parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanRHall committed Jan 8, 2025
1 parent 5532b95 commit 1b1da9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v1/QueryManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ abstract contract QueryManager is IQueryManager, Groth16VerifierExtension {
function respond(
uint256 requestId_,
bytes32[] calldata data,
uint256 blockNumber // TODO - remove
uint256 // TODO - remove
) external {
QueryRequest memory query = requests[requestId_];
delete requests[requestId_];
Expand Down

0 comments on commit 1b1da9d

Please sign in to comment.