eth: updated comments (#21490)

pull/21439/head
Marius van der Wijden 4 years ago committed by GitHub
parent 92b12ee6c6
commit 16d7eae1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      eth/api.go
  2. 2
      eth/api_tracer.go
  3. 2
      eth/bloombits.go

@ -354,7 +354,7 @@ func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs,
// AccountRangeMaxResults is the maximum number of results to be returned per call // AccountRangeMaxResults is the maximum number of results to be returned per call
const AccountRangeMaxResults = 256 const AccountRangeMaxResults = 256
// AccountRangeAt enumerates all accounts in the given block and start point in paging request // AccountRange enumerates all accounts in the given block and start point in paging request
func (api *PublicDebugAPI) AccountRange(blockNrOrHash rpc.BlockNumberOrHash, start []byte, maxResults int, nocode, nostorage, incompletes bool) (state.IteratorDump, error) { func (api *PublicDebugAPI) AccountRange(blockNrOrHash rpc.BlockNumberOrHash, start []byte, maxResults int, nocode, nostorage, incompletes bool) (state.IteratorDump, error) {
var stateDb *state.StateDB var stateDb *state.StateDB
var err error var err error

@ -401,7 +401,7 @@ func (api *PrivateDebugAPI) TraceBlockFromFile(ctx context.Context, file string,
return api.TraceBlock(ctx, blob, config) return api.TraceBlock(ctx, blob, config)
} }
// TraceBadBlockByHash returns the structured logs created during the execution of // TraceBadBlock returns the structured logs created during the execution of
// EVM against a block pulled from the pool of bad ones and returns them as a JSON // EVM against a block pulled from the pool of bad ones and returns them as a JSON
// object. // object.
func (api *PrivateDebugAPI) TraceBadBlock(ctx context.Context, hash common.Hash, config *TraceConfig) ([]*txTraceResult, error) { func (api *PrivateDebugAPI) TraceBadBlock(ctx context.Context, hash common.Hash, config *TraceConfig) ([]*txTraceResult, error) {

@ -137,7 +137,7 @@ func (b *BloomIndexer) Commit() error {
return batch.Write() return batch.Write()
} }
// PruneSections returns an empty error since we don't support pruning here. // Prune returns an empty error since we don't support pruning here.
func (b *BloomIndexer) Prune(threshold uint64) error { func (b *BloomIndexer) Prune(threshold uint64) error {
return nil return nil
} }

Loading…
Cancel
Save