From 0f182a7e37cdaacdecbc7f13869bb7d78b50b958 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Thu, 5 Nov 2020 11:19:45 +0100 Subject: [PATCH] style fixes --- libs/remix-solidity/src/compiler/compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-solidity/src/compiler/compiler.ts b/libs/remix-solidity/src/compiler/compiler.ts index f9c402db58..7541b98c78 100644 --- a/libs/remix-solidity/src/compiler/compiler.ts +++ b/libs/remix-solidity/src/compiler/compiler.ts @@ -52,7 +52,7 @@ export class Compiler { * @param value value of key in CompilerState */ - set (key: K, value: CompilerState[K]): void { + set (key: K, value: CompilerState[K]): void { this.state[key] = value if (key === 'runs') this.state['runs'] = parseInt(value) }