...
## 2.[High] Owner of a position can prevent liquidation due to the onERC721Received callback
### `onERC721Received()` prevents liquidation
- Summary: When liquidating a position, the `_cleanUpLoan()` function is called to transfer the Uniswap LP position back to the user. However, this p...
...uint256 amount ) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(to != from, "ERC20: transfer to the same address");
if(address(rewardToken) == from){
upda...