diff options
author | HackyMiner <hackyminer@gmail.com> | 2018-09-20 00:10:40 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-09-20 00:10:40 +0800 |
commit | 6975c7298102f73981a62871f6da8db2b5dbf32c (patch) | |
tree | 53f440dcae0e0f48cd9d7de52e2cea96ecbe9664 /eth | |
parent | c35659c6a0d8c9dd7b7616bb91700385292f403a (diff) | |
download | dexon-6975c7298102f73981a62871f6da8db2b5dbf32c.tar.gz dexon-6975c7298102f73981a62871f6da8db2b5dbf32c.tar.zst dexon-6975c7298102f73981a62871f6da8db2b5dbf32c.zip |
all: fix various comment typos (#17591)
* swarm: fixed comment typo
* eth: fixed comment typo
* cmd/puppeth: fixed comment typo
Diffstat (limited to 'eth')
-rw-r--r-- | eth/api_tracer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/api_tracer.go b/eth/api_tracer.go index 0a8b9a994..5b7f168ec 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) |