Fix linter issues in generated contract wrappers

This commit is contained in:
Leonid Logvinov
2018-06-04 17:25:44 -07:00
parent 475bb2845d
commit 61d9e418e8
3 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ export const utils = {
const componentType = `${component.name}: ${componentValueType}`;
return componentType;
});
const tsType = `{${componentsType}}`;
const tsType = `{${componentsType.join(';')}}`;
return tsType;
}
throw new Error(`Unknown Solidity type found: ${solType}`);