fix nondeterminism

This commit is contained in:
Jeromy 2020-05-13 13:21:46 -07:00
parent 363f575e6c
commit e34b20b839

View File

@ -25,7 +25,7 @@ func DefaultSectorSize() abi.SectorSize {
}
sort.Slice(szs, func(i, j int) bool {
return szs[i] < szs[i]
return szs[i] < szs[j]
})
return szs[0]