mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 13:46:43 +00:00
fix
This commit is contained in:
parent
f7eae65763
commit
cd09948040
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ func (t transientStorage) PrettyPrint() string {
|
|||
for _, addr := range sortedAddrs {
|
||||
fmt.Fprintf(out, "%#x:", addr)
|
||||
storage := t[addr]
|
||||
sortedKeys = make([]common.Hash, 0, len(storage))
|
||||
sortedKeys := make([]common.Hash, 0, len(storage))
|
||||
for key := range storage {
|
||||
sortedKeys = append(sortedKeys, key)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue