PLA Token (PLA)

This commit is contained in:
Mykola 2019-08-22 22:30:51 +02:00
parent 9395194f38
commit a94abe9751
2 changed files with 4 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -42,6 +42,10 @@ function checkBlockhainsFolder(){
const assets = readDirSync(assetsPath)
assets.forEach(asset => {
if (upperCaseExp.test(asset)) {
exitWithMsg(`${asset} folder must be in lowercase`)
}
if (!isAddress(asset)) {
exitWithMsg(`Invalid asset naming "${assetsPath}"`)
}