Skip to content

Commit

Permalink
fix(@embark/core): web3.eth.getAccounts returning empty
Browse files Browse the repository at this point in the history
`web3.eth.getAccounts` was returning an empty array in the console due to a change, that I’m unsure of what the original intention was for.

@andremederios, could you please take a look, and let me know if this breaks the intention of the original changes?
  • Loading branch information
emizzle committed Feb 28, 2019
1 parent a67a4ad commit bb86b60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class Provider {
return cb(err);
}
if (self.accounts.length) {
result.result = self.blockchainAccounts.map(a => a.address);
result.result = self.addresses;
}
cb(null, result);
});
Expand Down

0 comments on commit bb86b60

Please sign in to comment.