diff options
author | kao <zichongkao@gmail.com> | 2018-12-08 08:35:00 +0800 |
---|---|---|
committer | kao <zichongkao@gmail.com> | 2018-12-08 09:06:52 +0800 |
commit | f14603ca4d91ca72d9e81de53168230d85bc50aa (patch) | |
tree | 69eecd797c8c28f1b51513ffe01e7ab5e2104df1 /contracts/utils/test | |
parent | aa4fcebdc71fa58b12dc12ab03d7697444416c09 (diff) | |
download | dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.tar dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.tar.gz dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.tar.bz2 dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.tar.lz dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.tar.xz dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.tar.zst dexon-sol-tools-f14603ca4d91ca72d9e81de53168230d85bc50aa.zip |
Implement prefer-template tslint rule
Diffstat (limited to 'contracts/utils/test')
-rw-r--r-- | contracts/utils/test/lib_bytes.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contracts/utils/test/lib_bytes.ts b/contracts/utils/test/lib_bytes.ts index 985a98943..6fb859c67 100644 --- a/contracts/utils/test/lib_bytes.ts +++ b/contracts/utils/test/lib_bytes.ts @@ -25,7 +25,7 @@ const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); // BUG: Ideally we would use Buffer.from(memory).toString('hex') // https://github.com/Microsoft/TypeScript/issues/23155 -const toHex = (buf: Uint8Array): string => buf.reduce((a, v) => a + ('00' + v.toString(16)).slice(-2), '0x'); +const toHex = (buf: Uint8Array): string => buf.reduce((a, v) => a + `00${v.toString(16)}`.slice(-2), '0x'); const fromHex = (str: string): Uint8Array => Uint8Array.from(Buffer.from(str.slice(2), 'hex')); |