Skip to content

Commit 24f1247

Browse files
committed
Remove stException's that are now internal, added check finished message
1 parent d2da4c7 commit 24f1247

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/ICheck.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ let strExceptions = [
1919

2020
// These functions/events are allowed to differ. (These are present in ST/STGetter but not used and hence not defined in IST)
2121
let stExceptions = [
22-
"_owner",
23-
"UNLOCKED",
24-
"LOCKED",
2522
undefined, // constructor
2623
];
2724

@@ -50,6 +47,7 @@ async function checkInterfaces() {
5047
let strMismatch = await interfaceCheck(strABIs, strExceptions, "ISecurityTokenRegistry");
5148
let stMismatch = await interfaceCheck(stABIs, stExceptions, "ISecurityToken");
5249
if (strMismatch || stMismatch) {process.exit(1)};
50+
console.log(chalk.green("Interface checks finished. No mismatch was found between interfaces and contacts"));
5351
}
5452

5553
async function interfaceCheck(ABIs, exceptions, interfaceName) {

0 commit comments

Comments
 (0)