ethereum / mist

[DEPRECATED] Mist. Browse and use Ðapps on the Ethereum network.
http://ethereum.org
GNU General Public License v3.0
7.44k stars 2.12k forks source link

Method personal_signTransaction not supported in Mist v0.11.1? #4138

Open zulhfreelancer opened 5 years ago

zulhfreelancer commented 5 years ago
Version: `0.11.1`
OS & Version: OSX
Node version: `geth 1.8.2`
Number of blocks synchronized: 0

I'm using Mist with Ganache v1.2.2. When I try to send 0.1ETH from first account to other account in Ganache using Mist, I got the error above.

Is this expected behaviour?

One more thing. I'm not sure why I have Geth 1.8.2 in Mist but my system has Geth 1.8.12. How do set Mist to use the system Geth?

1

2

Thanks.

zulhfreelancer commented 5 years ago

Update

The ETH transfer works just fine in v0.10.0.

eth-transfer-mist

evertonfraga commented 5 years ago

Hi @zulhfreelancer,

personal_signTransaction is not supported by Ganache. Geth added it on version 1.8.1. Mist 0.10.0 works because it used another method, sign and send transaction.

I'll flag this as an improvement, to provide a fallback for ethereum nodes that do not implement that.

zulhfreelancer commented 5 years ago

Thank you @evertonfraga. Appreciate it.