aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/utils/compiler.json
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2019-02-07 20:33:44 +0800
committerFabio Berger <me@fabioberger.com>2019-02-07 20:33:44 +0800
commit7a9ff3846ecbfbdbe5ace374563deea50c15bc45 (patch)
treea44c30848e06af96b5e1ba1fea395d636e6693ae /contracts/utils/compiler.json
parentf118e86cfe478f95eb0450df351871e8278862c3 (diff)
parent2ef3af000378f66daa0212daaf23c807d018711e (diff)
downloaddexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar
dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.gz
dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.bz2
dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.lz
dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.xz
dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.zst
dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.zip
Merge development
Diffstat (limited to 'contracts/utils/compiler.json')
-rw-r--r--contracts/utils/compiler.json15
1 files changed, 10 insertions, 5 deletions
diff --git a/contracts/utils/compiler.json b/contracts/utils/compiler.json
index 7473ea6d1..a54f547df 100644
--- a/contracts/utils/compiler.json
+++ b/contracts/utils/compiler.json
@@ -3,10 +3,7 @@
"contractsDir": "./contracts",
"useDockerisedSolc": true,
"compilerSettings": {
- "optimizer": {
- "enabled": true,
- "runs": 1000000
- },
+ "optimizer": { "enabled": true, "runs": 1000000 },
"outputSelection": {
"*": {
"*": [
@@ -19,5 +16,13 @@
}
}
},
- "contracts": ["TestConstants", "TestLibBytes", "LibBytes", "Ownable", "IOwnable", "ReentrancyGuard", "SafeMath"]
+ "contracts": [
+ "src/LibBytes.sol",
+ "src/Ownable.sol",
+ "src/ReentrancyGuard.sol",
+ "src/SafeMath.sol",
+ "src/interfaces/IOwnable.sol",
+ "test/TestConstants.sol",
+ "test/TestLibBytes.sol"
+ ]
}