mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
eth/tracer: fix lint
This commit is contained in:
parent
d271f70fe1
commit
7ba54defdc
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ type stateTracer struct {
|
|||
func newStateTracer(ctx *Context, cfg json.RawMessage, chainCfg *params.ChainConfig) (*Tracer, error) {
|
||||
t := &stateTracer{
|
||||
Balance: make(map[common.Address]*hexutil.Big),
|
||||
Nonce: make(map[common.Address]hexutil.Uint64),
|
||||
Nonce: make(map[common.Address]hexutil.Uint64),
|
||||
Storage: make(map[common.Address]map[common.Hash]common.Hash),
|
||||
}
|
||||
return &Tracer{
|
||||
|
|
|
|||
Loading…
Reference in a new issue