good morning!!!!

Skip to content
Snippets Groups Projects
Commit 9d4e1e8f authored by Felix Lange's avatar Felix Lange
Browse files

eth: return account errors directly

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