Commit 9d4e1e8f authored by Felix Lange's avatar Felix Lange

eth: return account errors directly

parent c3f94a43
......@@ -168,7 +168,7 @@ func New(config *Config) (*Ethereum, error) {
cb, err := eth.accountManager.Coinbase()
if err != nil {
return nil, fmt.Errorf("no coinbase: %v", err)
return nil, err
}
eth.chainManager = core.NewChainManager(blockDb, stateDb, eth.EventMux())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment