WA-238 FIX creating master copy if contract has not been deployed

This commit is contained in:
apanizo 2018-05-02 16:43:16 +02:00
parent b5bafe2baa
commit 7f53e43fe9
1 changed files with 12 additions and 8 deletions

View File

@ -53,30 +53,34 @@ const createMasterCopies = async () => {
// Create ProxyFactory Master Copy
const ProxyFactory = getCreateProxyFactoryContract(web3)
try {
proxyFactoryMaster = await ProxyFactory.deployed()
if (!proxyFactoryMaster) {
} catch (err) {
proxyFactoryMaster = await ProxyFactory.new({ from: userAccount, gas: '5000000' })
}
// Create AddExtension Master Copy
const CreateAndAddExtension = getCreateAddExtensionContract(web3)
try {
createAndAddExtensionMaster = await CreateAndAddExtension.deployed()
if (!createAndAddExtensionMaster) {
} catch (err) {
createAndAddExtensionMaster = await CreateAndAddExtension.new({ from: userAccount, gas: '5000000' })
}
// Initialize safe master copy
const GnosisSafe = getGnosisSafeContract(web3)
try {
safeMaster = await GnosisSafe.deployed()
if (!safeMaster) {
} catch (err) {
safeMaster = await GnosisSafe.new({ from: userAccount, gas: '5000000' })
safeMaster.setup([userAccount], 1, 0, 0, { from: userAccount, gas: '5000000' })
}
// Initialize extension master copy
const DailyLimitExtension = getCreateDailyLimitExtensionContract(web3)
try {
dailyLimitMaster = await DailyLimitExtension.deployed()
if (!dailyLimitMaster) {
} catch (err) {
dailyLimitMaster = await DailyLimitExtension.new({ from: userAccount, gas: '5000000' })
dailyLimitMaster.setup([], [], { from: userAccount, gas: '5000000' })
}