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.
2 parents e3a48fd + 7abdc9e commit 2501218Copy full SHA for 2501218
lib/contracts/provider.js
@@ -78,7 +78,7 @@ class Provider {
78
if (!self.isDev) {
79
return callback();
80
}
81
- async.each(self.accounts, (account, eachCb) => {
+ async.eachLimit(self.accounts, 1, (account, eachCb) => {
82
fundAccount(self.web3, account.address, account.hexBalance, eachCb);
83
}, callback);
84
0 commit comments