diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-23 23:10:43 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-23 23:10:43 +0800 |
commit | 75ae305a6e95a775497c971b4d40c1757abba25f (patch) | |
tree | 6e616813165a2300e107b3055214fdce863f50b8 /test | |
parent | 845aee35d36a1c9031096738d6144045c32263cb (diff) | |
download | dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.tar dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.tar.gz dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.tar.bz2 dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.tar.lz dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.tar.xz dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.tar.zst dexon-sol-tools-75ae305a6e95a775497c971b4d40c1757abba25f.zip |
Rename KOVAN_URL to KOVAN_RPC_URL
Diffstat (limited to 'test')
-rw-r--r-- | test/artifacts_test.ts | 2 | ||||
-rw-r--r-- | test/utils/constants.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/artifacts_test.ts b/test/artifacts_test.ts index 1121ef951..d71b45567 100644 --- a/test/artifacts_test.ts +++ b/test/artifacts_test.ts @@ -9,7 +9,7 @@ const TIMEOUT = 10000; describe('Artifacts', () => { describe('contracts are deployed on kovan', () => { - const kovanRpcUrl = constants.KOVAN_URL; + const kovanRpcUrl = constants.KOVAN_RPC_URL; const packageJSONContent = fs.readFileSync('package.json', 'utf-8'); const packageJSON = JSON.parse(packageJSONContent); const mnemonic = packageJSON.config.mnemonic; diff --git a/test/utils/constants.ts b/test/utils/constants.ts index 8211eea00..9b150b5c1 100644 --- a/test/utils/constants.ts +++ b/test/utils/constants.ts @@ -2,5 +2,5 @@ export const constants = { NULL_ADDRESS: '0x0000000000000000000000000000000000000000', RPC_HOST: 'localhost', RPC_PORT: 8545, - KOVAN_URL: 'https://kovan.0xproject.com', + KOVAN_RPC_URL: 'https://kovan.0xproject.com', }; |