diff options
Diffstat (limited to 'rpc/api')
-rw-r--r-- | rpc/api/debug.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpc/api/debug.go b/rpc/api/debug.go index e193f7ad2..003b4d994 100644 --- a/rpc/api/debug.go +++ b/rpc/api/debug.go @@ -119,9 +119,9 @@ func (self *debugApi) DumpBlock(req *shared.Request) (interface{}, error) { return nil, fmt.Errorf("block #%d not found", args.BlockNumber) } - stateDb := state.New(block.Root(), self.ethereum.ChainDb()) - if stateDb == nil { - return nil, nil + stateDb, err := state.New(block.Root(), self.ethereum.ChainDb()) + if err != nil { + return nil, err } return stateDb.RawDump(), nil |