Explorar o código

eth/api: fix potential nil deref in AccountRange (#21710)

* Fix potential nil pointer error when neither block number nor hash is specified to accountRange

* Update error description
aaronbuchwald %!s(int64=5) %!d(string=hai) anos
pai
achega
3e82c9ef67
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      eth/api.go

+ 2 - 0
eth/api.go

@@ -389,6 +389,8 @@ func (api *PublicDebugAPI) AccountRange(blockNrOrHash rpc.BlockNumberOrHash, sta
 		if err != nil {
 			return state.IteratorDump{}, err
 		}
+	} else {
+		return state.IteratorDump{}, errors.New("either block number or block hash must be specified")
 	}
 
 	if maxResults > AccountRangeMaxResults || maxResults <= 0 {