From 93ce802f02c1d64fb1a21408d648eead89ad2087 Mon Sep 17 00:00:00 2001 From: hackyminer Date: Sat, 18 Aug 2018 06:55:22 +0900 Subject: [PATCH] eth: fixed comment typo --- eth/api_tracer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/api_tracer.go b/eth/api_tracer.go index 0a8b9a9942..5b7f168ec2 100644 --- a/eth/api_tracer.go +++ b/eth/api_tracer.go @@ -127,7 +127,7 @@ func (api *PrivateDebugAPI) TraceChain(ctx context.Context, start, end rpc.Block // traceChain configures a new tracer according to the provided configuration, and // executes all the transactions contained within. The return value will be one item -// per transaction, dependent on the requestd tracer. +// per transaction, dependent on the requested tracer. func (api *PrivateDebugAPI) traceChain(ctx context.Context, start, end *types.Block, config *TraceConfig) (*rpc.Subscription, error) { // Tracing a chain is a **long** operation, only do with subscriptions notifier, supported := rpc.NotifierFromContext(ctx)