Skip to content

Commit 5894ee1

Browse files
committed
chore: soft link ERC20Mintable into test/src/
1 parent 9133a8f commit 5894ee1

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

test/e2e/Helper.sol

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ interface IAuthorizer {
2525
function grantRole(bytes32, address) external;
2626
}
2727

28+
interface IERC20Mintable is IERC20 {
29+
function mint(address, uint) external;
30+
}
31+
2832
contract Harness is GPv2Settlement {
2933
constructor(GPv2Authentication authenticator_, IVault vault) GPv2Settlement(authenticator_, vault) {}
3034

test/src/ERC20Mintable.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../e2e/ERC20Mintable.sol

0 commit comments

Comments
 (0)