Closed code423n4 closed 1 year ago
https://github.com/code-423n4/2023-06-lukso/blob/bd49f57c32a522563fc42feeee23c83c8b373405/contracts/Mocks/Reentrancy/SingleReentrancyRelayer.sol#L25
Detailed description of the impact of this finding. the receive functions does not emit any amount sent to it
Provide direct links to all referenced code in GitHub. Add screenshots, logs, or any other relevant proof that illustrates the concept. https://github.com/code-423n4/2023-06-lukso/blob/bd49f57c32a522563fc42feeee23c83c8b373405/contracts/Mocks/Reentrancy/SingleReentrancyRelayer.sol#L25 receive() external payable {}
vscode
event ValueReceived(uint256); receive() external payable { emit ValueReceived(msg.value); }
Context
minhquanym marked the issue as primary issue
minhquanym marked the issue as low quality report
Inflated severity
trust1995 marked the issue as unsatisfactory: Overinflated severity
Lines of code
https://github.com/code-423n4/2023-06-lukso/blob/bd49f57c32a522563fc42feeee23c83c8b373405/contracts/Mocks/Reentrancy/SingleReentrancyRelayer.sol#L25
Vulnerability details
Impact
Detailed description of the impact of this finding. the receive functions does not emit any amount sent to it
Proof of Concept
Provide direct links to all referenced code in GitHub. Add screenshots, logs, or any other relevant proof that illustrates the concept. https://github.com/code-423n4/2023-06-lukso/blob/bd49f57c32a522563fc42feeee23c83c8b373405/contracts/Mocks/Reentrancy/SingleReentrancyRelayer.sol#L25 receive() external payable {}
Tools Used
vscode
Recommended Mitigation Steps
event ValueReceived(uint256); receive() external payable { emit ValueReceived(msg.value); }
Assessed type
Context