diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-11-26 09:37:14 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-11-29 08:38:11 +0800 |
commit | acd364b71c8b3ddb6d4d75d8667cc7f50b18694d (patch) | |
tree | 1f83daeddba941a8281ba5b5ccbfaf96f9466a45 /packages/utils/test | |
parent | ebaf9dd275403cdecfb3364876737fcbcd0eab82 (diff) | |
download | dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.tar dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.tar.gz dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.tar.bz2 dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.tar.lz dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.tar.xz dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.tar.zst dexon-sol-tools-acd364b71c8b3ddb6d4d75d8667cc7f50b18694d.zip |
Comments and inline documentation for dynamic bytes
Diffstat (limited to 'packages/utils/test')
-rw-r--r-- | packages/utils/test/abi_encoder/evm_data_types_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/utils/test/abi_encoder/evm_data_types_test.ts b/packages/utils/test/abi_encoder/evm_data_types_test.ts index 9c3e3c0f9..7cea86529 100644 --- a/packages/utils/test/abi_encoder/evm_data_types_test.ts +++ b/packages/utils/test/abi_encoder/evm_data_types_test.ts @@ -1018,7 +1018,7 @@ describe('ABI Encoder: EVM Data Type Encoding/Decoding', () => { // Encode Args and validate result expect(() => { dataType.encode(args); - }).to.throw("Tried to encode non-hex value. Value must inlcude '0x' prefix. Got '01'"); + }).to.throw("Tried to encode non-hex value. Value must inlcude '0x' prefix."); }); it('Should throw when pass in bad hex (include a half-byte)', async () => { // Create DataType object |