[beta] Fix Geth account import (#4643)

* Fix Geth import - actually pass addresses through

* Fix geth accounts not displayed

* Port saving of returned addresses (master MobX, beta state)

* log result -> importGethAccounts
This commit is contained in:
Jaco Greeff
2017-02-23 15:05:03 +01:00
committed by Arkadiy Paronyan
parent 7fc3f4eda0
commit e4e25b771e
3 changed files with 10 additions and 6 deletions

View File

@@ -174,7 +174,7 @@ export default class Parity {
importGethAccounts (accounts) {
return this._transport
.execute('parity_importGethAccounts', inAddresses)
.execute('parity_importGethAccounts', inAddresses(accounts))
.then(outAddresses);
}