Advertisement
Guest User

Untitled

a guest
May 24th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var BouncerProxy = artifacts.require("BouncerProxy.sol");
  2. var TestContract = artifacts.require("TestContract");
  3.  
  4. module.exports = async function (deployer, network, accounts) {
  5.  
  6. if (network == 'development') {
  7.  
  8. deployer.deploy(BouncerProxy, {from: accounts[0]}).then(async function() {
  9. await deployer.deploy(TestContract, {from: accounts[0]}).then(function() {
  10.  
  11. }) })
  12.  
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement