Skip to content

Commit ad46b86

Browse files
committed
fix: Use double quotes in contract imports (#494)
* fix: Use double quotes in contract imports * fix: add source location of ENS contracts
1 parent 27dbf00 commit ad46b86

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

contracts/lib/ens/AbstractENS.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// See https://github.com/ensdomains/ens/blob/7e377df83f/contracts/AbstractENS.sol
2+
13
pragma solidity ^0.4.15;
24

35

contracts/lib/ens/ENS.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
// See https://github.com/ensdomains/ens/blob/7e377df83f/contracts/ENS.sol
2+
13
pragma solidity ^0.4.0;
24

35

4-
import './AbstractENS.sol';
6+
import "./AbstractENS.sol";
57

68
/**
79
* The ENS registry contract.

contracts/lib/ens/PublicResolver.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
// See https://github.com/ensdomains/ens/blob/7e377df83f/contracts/PublicResolver.sol
2+
13
pragma solidity ^0.4.0;
24

3-
import './AbstractENS.sol';
5+
import "./AbstractENS.sol";
46

57
/**
68
* A simple resolver anyone can use; only allows the owner of a node to set its

0 commit comments

Comments
 (0)