* Upload LOGO

* move

Co-authored-by: esmeraldz <64386988+esmeraldz@users.noreply.github.com>
This commit is contained in:
mykola.eth 2020-04-26 18:11:04 -07:00 committed by GitHub
parent cff8dfb424
commit ca2e0ced46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -38,7 +38,7 @@ ethSidechains.forEach(chain => {
})
})
// Moves asset/0xXX...XX.png => assets/blockchains/assets/0xXX...XX/logo.png
// Moves assets/0xXX...XX.png => assets/blockchains/assets/0xXX...XX/logo.png
getRootDirFilesList().forEach(async file => {
const fileName = getFileName(file)
if(isImage(file) && !rootDirAllowedFiles.includes(file) && isEthereumAddress(fileName)) {
@ -49,7 +49,3 @@ getRootDirFilesList().forEach(async file => {
fs.renameSync(`./${file}`, `${ethreumAssetsPath}/${checksum}/${logo}`)
}
});