diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-07-31 20:47:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 20:47:51 +0800 |
commit | 37590d5f5eae9eea9802d260c6afede1e8c969ac (patch) | |
tree | 6bfee5a6a19348e0f2e0ed527e920d3db1d955a8 /packages/contracts/test/utils/artifacts.ts | |
parent | 9199a56b7ae8e8cffd02b8e79e9e827356975c63 (diff) | |
parent | 02eb575813564b0586a038cc1229a166cb402146 (diff) | |
download | dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.tar dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.tar.gz dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.tar.bz2 dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.tar.lz dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.tar.xz dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.tar.zst dexon-sol-tools-37590d5f5eae9eea9802d260c6afede1e8c969ac.zip |
Merge branch 'development' into ritave/resolver-check-dirs
Diffstat (limited to 'packages/contracts/test/utils/artifacts.ts')
-rw-r--r-- | packages/contracts/test/utils/artifacts.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/contracts/test/utils/artifacts.ts b/packages/contracts/test/utils/artifacts.ts index 63bd555a4..e608ee174 100644 --- a/packages/contracts/test/utils/artifacts.ts +++ b/packages/contracts/test/utils/artifacts.ts @@ -16,6 +16,7 @@ import * as MultiSigWalletWithTimeLock from '../../artifacts/MultiSigWalletWithT import * as TestAssetProxyDispatcher from '../../artifacts/TestAssetProxyDispatcher.json'; import * as TestAssetProxyOwner from '../../artifacts/TestAssetProxyOwner.json'; import * as TestConstants from '../../artifacts/TestConstants.json'; +import * as TestExchangeInternals from '../../artifacts/TestExchangeInternals.json'; import * as TestLibBytes from '../../artifacts/TestLibBytes.json'; import * as TestLibs from '../../artifacts/TestLibs.json'; import * as TestSignatureValidator from '../../artifacts/TestSignatureValidator.json'; @@ -46,6 +47,7 @@ export const artifacts = { TestConstants: (TestConstants as any) as ContractArtifact, TestLibBytes: (TestLibBytes as any) as ContractArtifact, TestLibs: (TestLibs as any) as ContractArtifact, + TestExchangeInternals: (TestExchangeInternals as any) as ContractArtifact, TestSignatureValidator: (TestSignatureValidator as any) as ContractArtifact, Validator: (Validator as any) as ContractArtifact, Wallet: (Wallet as any) as ContractArtifact, |