Update core/state/statedb.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
maskpp 2025-11-02 22:38:12 +08:00 committed by GitHub
parent 9b9c13880d
commit 26fbb4046e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -267,7 +267,7 @@ func (s *StateDB) Logs() []*types.Log {
}
// Because map iteration is not stable, we need to sort the logs by TxIndex, then the LogsHash result is stable.
sort.Slice(logs, func(i, j int) bool {
return logs[i].TxIndex < logs[j].TxIndex
return logs[i].TxIndex < logs[j].TxIndex || (logs[i].TxIndex == logs[j].TxIndex && logs[i].Index < logs[j].Index)
})
return logs
}