We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52244cc commit c893c34Copy full SHA for c893c34
lib/test.js
@@ -59,7 +59,13 @@ Test.prototype.deployAll = function(contractsConfig, cb) {
59
callback(null, ABI);
60
}
61
], function(err, result) {
62
+ if (err) {
63
+ throw new Error(err);
64
+ }
65
self.web3.eth.getAccounts(function(err, accounts) {
66
67
68
69
var web3 = self.web3;
70
web3.eth.defaultAccount = accounts[0];
71
// TODO: replace evals with separate process so it's isolated and with
0 commit comments