Skip to content

Commit

Permalink
perf: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru committed Mar 21, 2024
1 parent 920e8e5 commit a045e28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/test/TestFallbackReceiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ contract TestFallbackReceiver {

receive() external payable {
// solhint-disable-next-line no-unused-vars
(bool success, bytes memory data) = ethReceiver.call{value: address(this).balance}("");
(bool success, ) = ethReceiver.call{value: address(this).balance}("");
if (!success) {
revert("Failed to send eth");
}
Expand Down

0 comments on commit a045e28

Please sign in to comment.