From fbc17ffed211c470b50eb23b5dc45adade83f6d2 Mon Sep 17 00:00:00 2001 From: Kirill Date: Fri, 28 Sep 2018 18:02:19 +0700 Subject: [PATCH] PR: fix --- scripts/migrateLibs.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/migrateLibs.js b/scripts/migrateLibs.js index 7265bdd..1787b86 100644 --- a/scripts/migrateLibs.js +++ b/scripts/migrateLibs.js @@ -3,7 +3,7 @@ async function linkContractsWithLibrary(deployer, artifacts, lib, contractNames) try { await deployer.link(lib, artifacts.require(contractName)); } catch(error) { - console.log('not linked:', contractName); + console.log('Not linked:', contractName); } } } @@ -33,7 +33,7 @@ function migrateLibs (artifacts, additionalContracts, deployer, network, account await deployer.deploy(UtilsLib); await linkContractsWithLibrary(deployer, artifacts, UtilsLib, contractsArr); } catch(error) { - console.log('UtilsLib does not deploy'); + console.log('Thetta.UtilsLib is not deployed'); } try { @@ -41,7 +41,7 @@ function migrateLibs (artifacts, additionalContracts, deployer, network, account await deployer.deploy(VotingLib); await linkContractsWithLibrary(deployer, artifacts, VotingLib, contractsArr); } catch(error) { - console.log('VotingLib does not deploy'); + console.log('Thetta.VotingLib is not deployed'); } try { @@ -49,7 +49,7 @@ function migrateLibs (artifacts, additionalContracts, deployer, network, account await deployer.deploy(GenericCallerLib); await linkContractsWithLibrary(deployer, artifacts, GenericCallerLib, contractsArr); } catch(error) { - console.log('GenericCallerLib does not deploy'); + console.log('Thetta.GenericCallerLib is not deployed'); } try { @@ -57,7 +57,7 @@ function migrateLibs (artifacts, additionalContracts, deployer, network, account await deployer.deploy(DaoBaseLib); await linkContractsWithLibrary(deployer, artifacts, DaoBaseLib, contractsArr); } catch(error) { - console.log('DaoBaseLib does not deploy'); + console.log('Thetta.DaoBaseLib is not deployed'); } }); };