Fixing linting issues #3430

This commit is contained in:
Nicolas Gotchac 2016-11-14 20:29:37 +01:00
parent 29442673f8
commit 5322727617

View File

@ -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);