Skip to content

Commit

Permalink
🔀 resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Flocqst committed Oct 11, 2024
1 parent 989ffeb commit dc6b119
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 22 deletions.
7 changes: 0 additions & 7 deletions src/utils/zap/Zap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,7 @@ contract Zap is Reentrancy, Errors {
uint256 _amount,
uint256 _tolerance,
address _receiver
<<<<<<< HEAD
) external returns (uint256 received, address synth) {
=======
)
external
returns (uint256 received, address synth)
{
>>>>>>> 4af916b (👷 pull latest zap)
synth = ISpotMarket(SPOT_MARKET).getSynth(_synthId);
_pull(USDX, msg.sender, _amount);
received = _buy(_synthId, _amount, _tolerance);
Expand Down
7 changes: 0 additions & 7 deletions src/utils/zap/interfaces/IERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,7 @@ interface IERC20 {

function balanceOf(address account) external view returns (uint256);

<<<<<<< HEAD
function allowance(address owner, address spender)
=======
function allowance(
address owner,
address spender
)
>>>>>>> 4af916b (👷 pull latest zap)
external
view
returns (uint256);
Expand Down
8 changes: 0 additions & 8 deletions src/utils/zap/utils/Flush.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ import {IERC20} from "../interfaces/IERC20.sol";
/// @title token flushing utility
/// @author @jaredborders
contract Flush {
<<<<<<< HEAD
=======

>>>>>>> 4af916b (👷 pull latest zap)
/// @custom:plumber
address public PLUMBER;

Expand Down Expand Up @@ -38,8 +34,4 @@ contract Flush {
require(msg.sender == PLUMBER, OnlyPlumber());
PLUMBER = _newPlumber;
}
<<<<<<< HEAD
=======

>>>>>>> 4af916b (👷 pull latest zap)
}

0 comments on commit dc6b119

Please sign in to comment.