diff options
author | Fabio Berger <me@fabioberger.com> | 2018-05-17 20:07:55 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-05-17 20:07:55 +0800 |
commit | 7fab7829071f5b60a6dad058c5a7b6d56f607b97 (patch) | |
tree | 3f8bb8eb9c30bbafbebaf2d306feba091ab8a5b6 /packages/sol-compiler/test | |
parent | cf7967e6296aac0a328143e92a22c5682541a576 (diff) | |
download | dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.tar dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.tar.gz dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.tar.bz2 dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.tar.lz dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.tar.xz dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.tar.zst dexon-sol-tools-7fab7829071f5b60a6dad058c5a7b6d56f607b97.zip |
Improve naming
Diffstat (limited to 'packages/sol-compiler/test')
-rw-r--r-- | packages/sol-compiler/test/compiler_test.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/sol-compiler/test/compiler_test.ts b/packages/sol-compiler/test/compiler_test.ts index c7747741f..324313347 100644 --- a/packages/sol-compiler/test/compiler_test.ts +++ b/packages/sol-compiler/test/compiler_test.ts @@ -38,12 +38,13 @@ describe('#Compiler', function(): void { const exchangeArtifactString = await fsWrapper.readFileAsync(exchangeArtifactPath, opts); const exchangeArtifact: ContractArtifact = JSON.parse(exchangeArtifactString); // The last 43 bytes of the binaries are metadata which may not be equivalent - const last43BytesIndex = -86; + const metadataByteLength = 43; + const metadataHexLength = metadataByteLength * 2; const unlinkedBinaryWithoutMetadata = exchangeArtifact.compilerOutput.evm.bytecode.object.slice( 2, - last43BytesIndex, + -metadataHexLength, ); - const exchangeBinaryWithoutMetadata = exchange_binary.slice(0, last43BytesIndex); + const exchangeBinaryWithoutMetadata = exchange_binary.slice(0, -metadataHexLength); expect(unlinkedBinaryWithoutMetadata).to.equal(exchangeBinaryWithoutMetadata); }); }); |