mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
cmd/geth: fix format
This commit is contained in:
parent
9deda7ff72
commit
6ba1dc1391
1 changed files with 1 additions and 1 deletions
|
|
@ -847,7 +847,7 @@ func inspectStorage(db *triedb.Database, start uint64, end uint64, address commo
|
||||||
fmt.Printf("Failed to decode storage slot, %v", err)
|
fmt.Printf("Failed to decode storage slot, %v", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
content = fmt.Sprintf("#%x", data)
|
content = fmt.Sprintf("%x", data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fmt.Printf("#%d - #%d: %s\n", from, stats.Blocks[i], content)
|
fmt.Printf("#%d - #%d: %s\n", from, stats.Blocks[i], content)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue