Commit 23906bce authored by inphi's avatar inphi

run linter

parent 1f3413dc
...@@ -108,7 +108,9 @@ const main = async () => { ...@@ -108,7 +108,9 @@ const main = async () => {
// convert ast-based type to solidity type // convert ast-based type to solidity type
const typ = artifact.storageLayout.types[storageEntry.type] const typ = artifact.storageLayout.types[storageEntry.type]
if (typ === undefined) { if (typ === undefined) {
throw new Error(`undefined type for ${contractName}:${storageEntry.label}`) throw new Error(
`undefined type for ${contractName}:${storageEntry.label}`
)
} }
storageLayout.push({ storageLayout.push({
label: typ.label, label: typ.label,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment