Fix linter errors.

This commit is contained in:
Lawrence Forman
2019-04-03 22:06:48 -04:00
committed by Amir Bandeali
parent 565cc7b3c8
commit 5b25eb4fbd
4 changed files with 12 additions and 14 deletions

View File

@@ -46,7 +46,7 @@ export function decodeRichRevertReason(bytes: string | Buffer): RichRevertReason
*/
export abstract class RichRevertReason {
// Map of types registered via `registerType`.
private static _typeRegistry: ObjectMap<RichRevertReasonRegistryItem> = {};
private static readonly _typeRegistry: ObjectMap<RichRevertReasonRegistryItem> = {};
public abi: RichRevertAbi;
public values: ValueMap = {};