From 695462daf7469d0e8bc9cd1afb32bee95447b517 Mon Sep 17 00:00:00 2001 From: crispymangoes Date: Mon, 12 Aug 2024 13:20:46 -0700 Subject: [PATCH] Fix remaning licensing note --- src/atomic-queue/IAtomicSolver.sol | 4 ++-- src/interfaces/IRateProvider.sol | 2 +- src/interfaces/IUniswapV3Router.sol | 8 ++------ 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/atomic-queue/IAtomicSolver.sol b/src/atomic-queue/IAtomicSolver.sol index f9f541e7..23853f06 100644 --- a/src/atomic-queue/IAtomicSolver.sol +++ b/src/atomic-queue/IAtomicSolver.sol @@ -1,7 +1,7 @@ -// SPDX-License-Identifier: GPL-2.0-or-later +// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.0; -import { ERC20 } from "@solmate/tokens/ERC20.sol"; +import {ERC20} from "@solmate/tokens/ERC20.sol"; interface IAtomicSolver { /** diff --git a/src/interfaces/IRateProvider.sol b/src/interfaces/IRateProvider.sol index ac16581e..2c514153 100644 --- a/src/interfaces/IRateProvider.sol +++ b/src/interfaces/IRateProvider.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0-or-later +// SPDX-License-Identifier: UNLICENSED // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or diff --git a/src/interfaces/IUniswapV3Router.sol b/src/interfaces/IUniswapV3Router.sol index cb7d2e91..9a966d10 100644 --- a/src/interfaces/IUniswapV3Router.sol +++ b/src/interfaces/IUniswapV3Router.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-2.0-or-later +// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.0; /// @title Callback for IUniswapV3PoolActions#swap @@ -13,11 +13,7 @@ interface IUniswapV3SwapCallback { /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token1 to the pool. /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call - function uniswapV3SwapCallback( - int256 amount0Delta, - int256 amount1Delta, - bytes calldata data - ) external; + function uniswapV3SwapCallback(int256 amount0Delta, int256 amount1Delta, bytes calldata data) external; } /// @title Router token swapping functionality