Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vrolland committed Sep 27, 2021
1 parent 1d8f309 commit ed4f386
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -61,7 +61,10 @@ contract EthConversionProxy is ReentrancyGuard {
payable
{
// Request currency hash for ether: 0xF5AF88e117747e87fC5929F2ff87221B1447652E
require(_path[_path.length - 1] == address(0xF5AF88e117747e87fC5929F2ff87221B1447652E), "payment currency must be ethers");
require(
_path[_path.length - 1] == address(0xF5AF88e117747e87fC5929F2ff87221B1447652E),
"payment currency must be ethers"
);

(uint256 amountToPay, uint256 amountToPayInFees) = getConversions(
_path,
Expand Down

0 comments on commit ed4f386

Please sign in to comment.