Skip to content

Commit

Permalink
chore: fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Sep 25, 2024
1 parent f5f6f26 commit 8501dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/KeyRegistry/KeyRegistry.symbolic.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ contract KeyRegistrySymTest is SymTest, Test {
}
}

function slice(bytes calldata data, uint start, uint end) external returns (bytes memory) {
function slice(bytes calldata data, uint start, uint end) external pure returns (bytes memory) {
return data[start:end];
}
}

0 comments on commit 8501dd6

Please sign in to comment.