test: fix fevm recursive call
We've now lost 2 recursive calls, but that really shouldn't make a difference.
This commit is contained in:
parent
9eb4bb8559
commit
5743ed0151
@ -618,10 +618,10 @@ func TestFEVMRecursiveActorCall(t *testing.T) {
|
|||||||
t.Run("n=251,r=32", testN(251, 32, exitcode.Ok))
|
t.Run("n=251,r=32", testN(251, 32, exitcode.Ok))
|
||||||
|
|
||||||
t.Run("n=0,r=252", testN(0, 252, exitcode.Ok))
|
t.Run("n=0,r=252", testN(0, 252, exitcode.Ok))
|
||||||
t.Run("n=251,r=166", testN(251, 166, exitcode.Ok))
|
t.Run("n=251,r=164", testN(251, 164, exitcode.Ok))
|
||||||
|
|
||||||
t.Run("n=0,r=253-fails", testN(0, 254, exitcode.ExitCode(33))) // 33 means transaction reverted
|
t.Run("n=0,r=253-fails", testN(0, 254, exitcode.ExitCode(33))) // 33 means transaction reverted
|
||||||
t.Run("n=251,r=167-fails", testN(251, 167, exitcode.ExitCode(33)))
|
t.Run("n=251,r=167-fails", testN(251, 165, exitcode.ExitCode(33)))
|
||||||
}
|
}
|
||||||
|
|
||||||
// TestFEVMRecursiveActorCallEstimate
|
// TestFEVMRecursiveActorCallEstimate
|
||||||
|
Loading…
Reference in New Issue
Block a user