diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-08-25 00:27:29 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-08-25 04:32:04 +0800 |
commit | 070eff6f3a2f3775ef72248c3f345c05cd833798 (patch) | |
tree | 434ea365997e41391c06c14630e3716ef20f2cb7 /packages/contracts/test/utils/artifacts.ts | |
parent | 681ed822eca91085300e85e136ddcf4abd90495c (diff) | |
download | dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.gz dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.bz2 dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.lz dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.xz dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.zst dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.zip |
Rename TestStaticCall => TestStaticCallReceiver
Diffstat (limited to 'packages/contracts/test/utils/artifacts.ts')
-rw-r--r-- | packages/contracts/test/utils/artifacts.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/test/utils/artifacts.ts b/packages/contracts/test/utils/artifacts.ts index 1c922a3e4..2f6fcef71 100644 --- a/packages/contracts/test/utils/artifacts.ts +++ b/packages/contracts/test/utils/artifacts.ts @@ -23,7 +23,7 @@ import * as TestExchangeInternals from '../../artifacts/TestExchangeInternals.js import * as TestLibBytes from '../../artifacts/TestLibBytes.json'; import * as TestLibs from '../../artifacts/TestLibs.json'; import * as TestSignatureValidator from '../../artifacts/TestSignatureValidator.json'; -import * as TestStaticCall from '../../artifacts/TestStaticCall.json'; +import * as TestStaticCallReceiver from '../../artifacts/TestStaticCallReceiver.json'; import * as TokenRegistry from '../../artifacts/TokenRegistry.json'; import * as Validator from '../../artifacts/Validator.json'; import * as Wallet from '../../artifacts/Wallet.json'; @@ -56,7 +56,7 @@ export const artifacts = { TestLibs: (TestLibs as any) as ContractArtifact, TestExchangeInternals: (TestExchangeInternals as any) as ContractArtifact, TestSignatureValidator: (TestSignatureValidator as any) as ContractArtifact, - TestStaticCall: (TestStaticCall as any) as ContractArtifact, + TestStaticCallReceiver: (TestStaticCallReceiver as any) as ContractArtifact, Validator: (Validator as any) as ContractArtifact, Wallet: (Wallet as any) as ContractArtifact, TokenRegistry: (TokenRegistry as any) as ContractArtifact, |