diff options
author | Felix Lange <fjl@twurst.com> | 2016-11-25 06:01:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 06:01:34 +0800 |
commit | fa0e057f8a2202cd9a7ed209f0a815805b4f5538 (patch) | |
tree | edc5d4d82f4dff5ccf7cc533b7280b3941448689 /tests/state_test.go | |
parent | 8e64e4383c3b99d65d4e12c1f1875270a49c6ff6 (diff) | |
parent | bca7bfa927db47d6a089fdc9da8d2501dcab29d5 (diff) | |
download | dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.tar dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.tar.gz dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.tar.bz2 dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.tar.lz dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.tar.xz dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.tar.zst dexon-fa0e057f8a2202cd9a7ed209f0a815805b4f5538.zip |
Merge pull request #3341 from obscuren/touch-delete-fix
core, core/state: fixed consensus issue added touch revert
Diffstat (limited to 'tests/state_test.go')
-rw-r--r-- | tests/state_test.go | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index ac839186a..1582cc4af 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -683,7 +683,7 @@ func TestEIP158Create(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "stCreateTest.json") @@ -696,7 +696,7 @@ func TestEIP158Specific(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "stEIP158SpecificTest.json") @@ -709,7 +709,7 @@ func TestEIP158NonZeroCalls(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "stNonZeroCallsTest.json") @@ -722,7 +722,7 @@ func TestEIP158ZeroCalls(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "stZeroCallsTest.json") @@ -735,7 +735,7 @@ func TestEIP158_150Specific(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "EIP150", "stEIPSpecificTest.json") @@ -748,7 +748,7 @@ func TestEIP158_150SingleCodeGasPrice(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "EIP150", "stEIPsingleCodeGasPrices.json") @@ -761,7 +761,7 @@ func TestEIP158_150MemExpandingCalls(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "EIP150", "stMemExpandingEIPCalls.json") @@ -774,7 +774,7 @@ func TestEIP158HomesteadStateSystemOperations(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stSystemOperationsTest.json") @@ -787,7 +787,7 @@ func TestEIP158HomesteadStatePreCompiledContracts(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stPreCompiledContracts.json") @@ -800,7 +800,7 @@ func TestEIP158HomesteadStateRecursiveCreate(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stSpecialTest.json") @@ -813,7 +813,7 @@ func TestEIP158HomesteadStateRefund(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stRefundTest.json") @@ -826,7 +826,7 @@ func TestEIP158HomesteadStateInitCode(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stInitCodeTest.json") @@ -839,7 +839,7 @@ func TestEIP158HomesteadStateLog(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stLogTests.json") @@ -852,7 +852,7 @@ func TestEIP158HomesteadStateTransaction(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stTransactionTest.json") @@ -865,7 +865,7 @@ func TestEIP158HomesteadCallCreateCallCode(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallCreateCallCodeTest.json") @@ -878,7 +878,7 @@ func TestEIP158HomesteadCallCodes(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallCodes.json") @@ -891,7 +891,7 @@ func TestEIP158HomesteadMemory(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stMemoryTest.json") @@ -904,7 +904,7 @@ func TestEIP158HomesteadMemoryStress(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } if os.Getenv("TEST_VM_COMPLEX") == "" { @@ -920,7 +920,7 @@ func TestEIP158HomesteadQuadraticComplexity(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } if os.Getenv("TEST_VM_COMPLEX") == "" { @@ -936,7 +936,7 @@ func TestEIP158HomesteadWallet(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stWalletTest.json") @@ -949,7 +949,7 @@ func TestEIP158HomesteadDelegateCodes(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallDelegateCodes.json") @@ -962,7 +962,7 @@ func TestEIP158HomesteadDelegateCodesCallCode(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallDelegateCodesCallCode.json") @@ -975,7 +975,7 @@ func TestEIP158HomesteadBounds(t *testing.T) { chainConfig := ¶ms.ChainConfig{ HomesteadBlock: new(big.Int), EIP150Block: big.NewInt(2457000), - EIP158Block: big.NewInt(3500000), + EIP158Block: params.MainNetSpuriousDragon, } fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stBoundsTest.json") |