Skip to content

Commit

Permalink
Report for issue #835 updated by escrow
Browse files Browse the repository at this point in the history
  • Loading branch information
code423n4 committed Jul 5, 2023
1 parent 6090293 commit 1f7b4a8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions data/RED-LOTUS-REACH-Q.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function transferOwnership(address newOwner) public override onlyOwner {
}
```

## [L-02] Potential Misuse of `transferOwnership`
## [L-02] Potential Price Manipulation via Flash Loans

### Impact

Expand Down Expand Up @@ -174,7 +174,9 @@ Use `lastManaged[msg.sender][_token] = block.timestamp;` within the `if` stateme

### Impact

The currently designed smart contract events do not emit the previous values of the state changes, which could lead to a lack of visibility and traceability when changes are made. This can make it difficult for other developers or auditors to follow the contract’s history and could potentially hinder troubleshooting or understanding of the contract’s behavior over time. Proof of Concept
The currently designed smart contract events do not emit the previous values of the state changes, which could lead to a lack of visibility and traceability when changes are made. This can make it difficult for other developers or auditors to follow the contract’s history and could potentially hinder troubleshooting or understanding of the contract’s behavior over time.

### Proof of Concept

Below are examples of events that do not emit the previous values of the state changes:

Expand Down

0 comments on commit 1f7b4a8

Please sign in to comment.