rpc: unmask pending block fields

This pleases the RPC tests.
This commit is contained in:
Felix Lange 2015-06-24 01:35:39 +02:00 committed by Jeffrey Wilcke
parent e0e5f74776
commit 7098ec691c
1 changed files with 0 additions and 8 deletions

View File

@ -348,14 +348,6 @@ func (self *ethApi) GetBlockByNumber(req *shared.Request) (interface{}, error) {
block := self.xeth.EthBlockByNumber(args.BlockNumber)
br := NewBlockRes(block, args.IncludeTxs)
// If request was for "pending", nil nonsensical fields
if args.BlockNumber == -2 {
br.BlockHash = nil
br.BlockNumber = nil
br.Miner = nil
br.Nonce = nil
br.LogsBloom = nil
}
return br, nil
}