fix catching gasEstimation failure

auto_exec_v2
yann300 3 years ago
parent 3418bbcef4
commit fe6b0e81b2
  1. 3
      libs/remix-tests/src/deployer.ts

@ -79,6 +79,9 @@ export function deployAll (compileResult: compilationInterface, web3: Web3, test
console.error(err)
callback(err)
})
}).catch((err) => {
console.error(err)
callback(err)
})
}

Loading…
Cancel
Save