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 e7e7b87 commit 7abdc9eCopy full SHA for 7abdc9e
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