From 6d009f796d4758a9df03638ad7892f562adec738 Mon Sep 17 00:00:00 2001 From: David Racero Date: Mon, 2 Nov 2020 15:47:02 +0100 Subject: [PATCH] Moved WETH9.sol to mock/dependencies due is only for testing purposes --- contracts/{ => mocks}/dependencies/weth/WETH9.sol | 0 contracts/mocks/tokens/WETH9Mocked.sol | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename contracts/{ => mocks}/dependencies/weth/WETH9.sol (100%) diff --git a/contracts/dependencies/weth/WETH9.sol b/contracts/mocks/dependencies/weth/WETH9.sol similarity index 100% rename from contracts/dependencies/weth/WETH9.sol rename to contracts/mocks/dependencies/weth/WETH9.sol diff --git a/contracts/mocks/tokens/WETH9Mocked.sol b/contracts/mocks/tokens/WETH9Mocked.sol index 8a6afd58..edcb1ca5 100644 --- a/contracts/mocks/tokens/WETH9Mocked.sol +++ b/contracts/mocks/tokens/WETH9Mocked.sol @@ -1,6 +1,6 @@ pragma solidity >=0.4.22 <=0.6.8; -import {WETH9} from '../../dependencies/weth/WETH9.sol'; +import {WETH9} from '../dependencies/weth/WETH9.sol'; contract WETH9Mocked is WETH9 { // Mint not backed by Ether: only for testing purposes