mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-05-03 11:41:48 +00:00
vm: limit POW, fix #2060
Calculating pow(pow(2, 255), 0xffffffff) takes unknown amount of time. See also neo-project/neo-vm#422.
This commit is contained in:
parent
2b7abd20e7
commit
15be763bb3
2 changed files with 2 additions and 3 deletions
|
@ -6,7 +6,6 @@ import (
|
|||
"encoding/hex"
|
||||
"errors"
|
||||
"fmt"
|
||||
"math"
|
||||
"math/big"
|
||||
"math/rand"
|
||||
"testing"
|
||||
|
@ -719,7 +718,7 @@ func TestPOW(t *testing.T) {
|
|||
t.Run("good, negative, odd", getTestFuncForVM(prog, -8, -2, 3))
|
||||
t.Run("zero", getTestFuncForVM(prog, 1, 3, 0))
|
||||
t.Run("negative exponent", getTestFuncForVM(prog, nil, 3, -1))
|
||||
t.Run("too big exponent", getTestFuncForVM(prog, nil, 1, math.MaxInt32+1))
|
||||
t.Run("too big exponent", getTestFuncForVM(prog, nil, 1, maxSHLArg+1))
|
||||
}
|
||||
|
||||
func TestSQRT(t *testing.T) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue