Merge pull request #2302 from nspcc-dev/dont-sort-witnesses

core: don't sort witnesses prior to check, fix #2301
This commit is contained in:
Roman Khimov 2021-12-07 12:12:42 +03:00 committed by GitHub
commit 673ea0db87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2510,7 +2510,6 @@ func (bc *Blockchain) verifyTxWitnesses(t *transaction.Transaction, block *block
return errors.Errorf("expected len(hashes) == len(witnesses). got: %d != %d", len(hashes), len(witnesses))
}
sort.Slice(hashes, func(i, j int) bool { return hashes[i].Less(hashes[j]) })
sort.Slice(witnesses, func(i, j int) bool { return witnesses[i].ScriptHash().Less(witnesses[j].ScriptHash()) })
interopCtx := bc.newInteropContext(trigger.Verification, bc.dao, block, t)
for i := 0; i < len(hashes); i++ {
err := bc.verifyHashAgainstScript(hashes[i], &witnesses[i], t.VerificationHash(), interopCtx, false)