params: remove redundant consts, disable metro on AllProtocolChanges
This commit is contained in:
@ -684,7 +684,7 @@ func TestEIP158Create(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "stCreateTest.json")
|
||||
@ -697,7 +697,7 @@ func TestEIP158Specific(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "stEIP158SpecificTest.json")
|
||||
@ -710,7 +710,7 @@ func TestEIP158NonZeroCalls(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "stNonZeroCallsTest.json")
|
||||
@ -723,7 +723,7 @@ func TestEIP158ZeroCalls(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "stZeroCallsTest.json")
|
||||
@ -736,7 +736,7 @@ func TestEIP158_150Specific(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "EIP150", "stEIPSpecificTest.json")
|
||||
@ -749,7 +749,7 @@ func TestEIP158_150SingleCodeGasPrice(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "EIP150", "stEIPsingleCodeGasPrices.json")
|
||||
@ -762,7 +762,7 @@ func TestEIP158_150MemExpandingCalls(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "EIP150", "stMemExpandingEIPCalls.json")
|
||||
@ -775,7 +775,7 @@ func TestEIP158HomesteadStateSystemOperations(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stSystemOperationsTest.json")
|
||||
@ -788,7 +788,7 @@ func TestEIP158HomesteadStatePreCompiledContracts(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stPreCompiledContracts.json")
|
||||
@ -801,7 +801,7 @@ func TestEIP158HomesteadStateRecursiveCreate(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stSpecialTest.json")
|
||||
@ -814,7 +814,7 @@ func TestEIP158HomesteadStateRefund(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stRefundTest.json")
|
||||
@ -827,7 +827,7 @@ func TestEIP158HomesteadStateInitCode(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stInitCodeTest.json")
|
||||
@ -840,7 +840,7 @@ func TestEIP158HomesteadStateLog(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stLogTests.json")
|
||||
@ -853,7 +853,7 @@ func TestEIP158HomesteadStateTransaction(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stTransactionTest.json")
|
||||
@ -866,7 +866,7 @@ func TestEIP158HomesteadCallCreateCallCode(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallCreateCallCodeTest.json")
|
||||
@ -879,7 +879,7 @@ func TestEIP158HomesteadCallCodes(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallCodes.json")
|
||||
@ -892,7 +892,7 @@ func TestEIP158HomesteadMemory(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stMemoryTest.json")
|
||||
@ -905,7 +905,7 @@ func TestEIP158HomesteadMemoryStress(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
if os.Getenv("TEST_VM_COMPLEX") == "" {
|
||||
@ -921,7 +921,7 @@ func TestEIP158HomesteadQuadraticComplexity(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
if os.Getenv("TEST_VM_COMPLEX") == "" {
|
||||
@ -937,7 +937,7 @@ func TestEIP158HomesteadWallet(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stWalletTest.json")
|
||||
@ -950,7 +950,7 @@ func TestEIP158HomesteadDelegateCodes(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallDelegateCodes.json")
|
||||
@ -963,7 +963,7 @@ func TestEIP158HomesteadDelegateCodesCallCode(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stCallDelegateCodesCallCode.json")
|
||||
@ -976,7 +976,7 @@ func TestEIP158HomesteadBounds(t *testing.T) {
|
||||
chainConfig := ¶ms.ChainConfig{
|
||||
HomesteadBlock: new(big.Int),
|
||||
EIP150Block: big.NewInt(2457000),
|
||||
EIP158Block: params.MainNetSpuriousDragon,
|
||||
EIP158Block: params.MainnetChainConfig.EIP158Block,
|
||||
}
|
||||
|
||||
fn := filepath.Join(stateTestDir, "EIP158", "Homestead", "stBoundsTest.json")
|
||||
|
Reference in New Issue
Block a user