Skip to content

Commit

Permalink
Merge pull request ethereum#350 from ngtuna/err
Browse files Browse the repository at this point in the history
print err
  • Loading branch information
ngtuna authored Dec 19, 2018
2 parents 4888334 + 109dedc commit 0e24a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
currentHeader := eth.blockchain.CurrentHeader()
snap, err := c.GetSnapshot(eth.blockchain, currentHeader)
if err != nil {
log.Error("Can't get snapshot with current header ", "number", currentHeader.Number, "hash", currentHeader.Hash().Hex())
log.Error("Can't get snapshot with current header ", "number", currentHeader.Number, "hash", currentHeader.Hash().Hex(), "err", err)
return false
}
if _, ok := snap.Signers[address]; ok {
Expand Down

0 comments on commit 0e24a8d

Please sign in to comment.