diff --git a/eth/api.go b/eth/api.go index a7747f27e..dd7a75811 100644 --- a/eth/api.go +++ b/eth/api.go @@ -575,7 +575,7 @@ func (s *PublicBlockChainAPI) GetBlockByNumber(blockNr rpc.BlockNumber, fullTx b response, err := s.rpcOutputBlock(block, true, fullTx) if err == nil && blockNr == rpc.PendingBlockNumber { // Pending blocks need to nil out a few fields - for _, field := range []string{"hash", "nonce", "logsBloom", "miner"} { + for _, field := range []string{"hash", "nonce", "miner"} { response[field] = nil } }