core/vm: simplify the return values format

This commit is contained in:
Ulaş Erdoğan 2023-05-22 17:57:24 +02:00
parent 6c7028a904
commit d245194e77
1 changed files with 1 additions and 5 deletions

View File

@ -1079,9 +1079,5 @@ func (c *p256Verify) Run(input []byte) ([]byte, error) {
x, y := new(big.Int).SetBytes(input[96:128]), new(big.Int).SetBytes(input[128:160])
// Verify the secp256r1 signature
if result, err := secp256r1.Verify(hash, r, s, x, y); err != nil {
return nil, err
} else {
return result, nil
}
return secp256r1.Verify(hash, r, s, x, y)
}