From c6161432d6302d80ac4cd85f009d856894003c41 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Tue, 27 Aug 2019 14:00:50 +0200 Subject: [PATCH] Fix linting error --- lib/evm/opcodes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/evm/opcodes.ts b/lib/evm/opcodes.ts index b4c3c3ab682..dbaa8671212 100644 --- a/lib/evm/opcodes.ts +++ b/lib/evm/opcodes.ts @@ -175,7 +175,7 @@ const istanbulOpcodes: any = { export function setOpcodes(hf: string) { if (hf === 'istanbul') { - codes = {...codes, ...istanbulOpcodes} + codes = { ...codes, ...istanbulOpcodes } } }