From 53227276175a813dcad7f4d96fd82b3b5dd09c5b Mon Sep 17 00:00:00 2001 From: Nicolas Gotchac Date: Mon, 14 Nov 2016 20:29:37 +0100 Subject: [PATCH] Fixing linting issues #3430 --- js/src/util/abi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/util/abi.js b/js/src/util/abi.js index 9c6c597f5..2d849f09d 100644 --- a/js/src/util/abi.js +++ b/js/src/util/abi.js @@ -32,7 +32,7 @@ export const ABI_TYPES = { }; export function parseAbiType (type) { - const arrayRegex = /^(.+)\[(\d*)\]$/; + const arrayRegex = /^(.+)\[(\d*)]$/; if (arrayRegex.test(type)) { const matches = arrayRegex.exec(type);