From 5894ee1d9637ed6c895c0c837ba0ac26441ffaeb Mon Sep 17 00:00:00 2001 From: Meet Mangukiya Date: Thu, 12 Sep 2024 11:17:47 +0530 Subject: [PATCH] chore: soft link ERC20Mintable into test/src/ --- test/e2e/Helper.sol | 4 ++++ test/src/ERC20Mintable.sol | 1 + 2 files changed, 5 insertions(+) create mode 120000 test/src/ERC20Mintable.sol diff --git a/test/e2e/Helper.sol b/test/e2e/Helper.sol index aa592052..09fd990f 100644 --- a/test/e2e/Helper.sol +++ b/test/e2e/Helper.sol @@ -25,6 +25,10 @@ interface IAuthorizer { function grantRole(bytes32, address) external; } +interface IERC20Mintable is IERC20 { + function mint(address, uint) external; +} + contract Harness is GPv2Settlement { constructor(GPv2Authentication authenticator_, IVault vault) GPv2Settlement(authenticator_, vault) {} diff --git a/test/src/ERC20Mintable.sol b/test/src/ERC20Mintable.sol new file mode 120000 index 00000000..c31a1693 --- /dev/null +++ b/test/src/ERC20Mintable.sol @@ -0,0 +1 @@ +../e2e/ERC20Mintable.sol \ No newline at end of file