Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Fix typo in provider-engine #16

Merged
merged 1 commit into from
Sep 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in provider-engine
  • Loading branch information
Arachnid authored Jun 24, 2017
commit 746a5688c0be098a850e2787358c17624d896abe
2 changes: 1 addition & 1 deletion provider-engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inherits(WalletSubprovider, HookedWalletEthTxSubprovider)

function WalletSubprovider (wallet, opts) {
opts.getAccounts = function (cb) {
cb(null, [ wallet.getAddressesString() ])
cb(null, [ wallet.getAddressString() ])
}

opts.getPrivateKey = function (address, cb) {
Expand Down