From 88c96c70521a0cc8f2cbdd3500f820e979054125 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 6 Sep 2017 15:15:00 +0200 Subject: Use template strings --- src/utils/abi_decoder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/abi_decoder.ts b/src/utils/abi_decoder.ts index 05389a05f..528a0e831 100644 --- a/src/utils/abi_decoder.ts +++ b/src/utils/abi_decoder.ts @@ -61,6 +61,6 @@ export class AbiDecoder { } formatted = _.padStart(formatted, 40, '0'); - return '0x' + formatted; + return `0x${formatted}`; } } -- cgit v1.2.3