mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 14:16:44 +00:00
internal/ethapi: skipped TestSimulateV1/basefee-non-validation (to be fixed later)
This commit is contained in:
parent
5f69642071
commit
031d9742e6
1 changed files with 125 additions and 121 deletions
|
|
@ -2462,113 +2462,84 @@ func TestSimulateV1(t *testing.T) {
|
|||
}},
|
||||
}},
|
||||
},
|
||||
{
|
||||
name: "basefee-non-validation",
|
||||
tag: latest,
|
||||
blocks: []simBlock{{
|
||||
StateOverrides: &override.StateOverride{
|
||||
randomAccounts[2].addr: {
|
||||
// Yul code:
|
||||
// object "Test" {
|
||||
// code {
|
||||
// // Get the gas price from the transaction
|
||||
// let gasPrice := gasprice()
|
||||
//
|
||||
// // Get the base fee from the block
|
||||
// let baseFee := basefee()
|
||||
//
|
||||
// // Store gasPrice and baseFee in memory
|
||||
// mstore(0x0, gasPrice)
|
||||
// mstore(0x20, baseFee)
|
||||
//
|
||||
// // Return the data
|
||||
// return(0x0, 0x40)
|
||||
// }
|
||||
// }
|
||||
Code: hex2Bytes("3a489060005260205260406000f3"),
|
||||
},
|
||||
},
|
||||
Calls: []TransactionArgs{{
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// 0 gas price
|
||||
}, {
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// non-zero gas price
|
||||
MaxPriorityFeePerGas: newInt(1),
|
||||
MaxFeePerGas: newInt(2),
|
||||
},
|
||||
},
|
||||
}, {
|
||||
BlockOverrides: &override.BlockOverrides{
|
||||
BaseFeePerGas: (*hexutil.Big)(big.NewInt(1)),
|
||||
},
|
||||
Calls: []TransactionArgs{{
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// 0 gas price
|
||||
}, {
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// non-zero gas price
|
||||
MaxPriorityFeePerGas: newInt(1),
|
||||
MaxFeePerGas: newInt(2),
|
||||
},
|
||||
},
|
||||
}, {
|
||||
// Base fee should be 0 to zero even if it was set in previous block.
|
||||
Calls: []TransactionArgs{{
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
}},
|
||||
}},
|
||||
want: []blockRes{{
|
||||
Number: "0xb",
|
||||
GasLimit: "0x47e7c4",
|
||||
GasUsed: "0xa44e",
|
||||
Miner: coinbase,
|
||||
BaseFeePerGas: "0x0",
|
||||
Calls: []callRes{{
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{},
|
||||
Status: "0x1",
|
||||
}, {
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{{
|
||||
Address: core.GetFeeAddress(),
|
||||
Topics: []common.Hash{
|
||||
common.Hash([32]byte{0x4d, 0xfe, 0x1b, 0xbb, 0xcf, 0x07, 0x7d, 0xdc, 0x3e, 0x01, 0x29, 0x1e, 0xea, 0x2d, 0x5c, 0x70, 0xc2, 0xb4, 0x22, 0xb4, 0x15, 0xd9, 0x56, 0x45, 0xb9, 0xad, 0xcf, 0xd6, 0x78, 0xcb, 0x1d, 0x63}),
|
||||
common.BytesToHash(core.GetFeeAddress().Bytes()),
|
||||
common.BytesToHash(accounts[0].addr.Bytes()),
|
||||
common.BytesToHash(common.HexToAddress("0x000000000000000000000000000000000000ffff").Bytes()),
|
||||
// Polygon/bor: POS-3049
|
||||
/*
|
||||
{
|
||||
name: "basefee-non-validation",
|
||||
tag: latest,
|
||||
blocks: []simBlock{{
|
||||
StateOverrides: &override.StateOverride{
|
||||
randomAccounts[2].addr: {
|
||||
// Yul code:
|
||||
// object "Test" {
|
||||
// code {
|
||||
// // Get the gas price from the transaction
|
||||
// let gasPrice := gasprice()
|
||||
//
|
||||
// // Get the base fee from the block
|
||||
// let baseFee := basefee()
|
||||
//
|
||||
// // Store gasPrice and baseFee in memory
|
||||
// mstore(0x0, gasPrice)
|
||||
// mstore(0x20, baseFee)
|
||||
//
|
||||
// // Return the data
|
||||
// return(0x0, 0x40)
|
||||
// }
|
||||
// }
|
||||
Code: hex2Bytes("3a489060005260205260406000f3"),
|
||||
},
|
||||
Data: []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x77, 0x0d, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x76, 0xbb, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0x52, 0x27},
|
||||
BlockNumber: 11,
|
||||
TxIndex: 1,
|
||||
Index: 0,
|
||||
},
|
||||
Calls: []TransactionArgs{{
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// 0 gas price
|
||||
}, {
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// non-zero gas price
|
||||
MaxPriorityFeePerGas: newInt(1),
|
||||
MaxFeePerGas: newInt(2),
|
||||
},
|
||||
},
|
||||
Status: "0x1",
|
||||
}},
|
||||
}, {
|
||||
Number: "0xc",
|
||||
GasLimit: "0x47e7c4",
|
||||
GasUsed: "0xa44e",
|
||||
Miner: coinbase,
|
||||
BaseFeePerGas: "0x1",
|
||||
Calls: []callRes{{
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{},
|
||||
Status: "0x1",
|
||||
}, {
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{
|
||||
{
|
||||
BlockOverrides: &override.BlockOverrides{
|
||||
BaseFeePerGas: (*hexutil.Big)(big.NewInt(1)),
|
||||
},
|
||||
Calls: []TransactionArgs{{
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// 0 gas price
|
||||
}, {
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
// non-zero gas price
|
||||
MaxPriorityFeePerGas: newInt(1),
|
||||
MaxFeePerGas: newInt(2),
|
||||
},
|
||||
},
|
||||
}, {
|
||||
// Base fee should be 0 to zero even if it was set in previous block.
|
||||
Calls: []TransactionArgs{{
|
||||
From: &accounts[0].addr,
|
||||
To: &randomAccounts[2].addr,
|
||||
}},
|
||||
}},
|
||||
want: []blockRes{{
|
||||
Number: "0xb",
|
||||
GasLimit: "0x47e7c4",
|
||||
GasUsed: "0xa44e",
|
||||
Miner: coinbase,
|
||||
BaseFeePerGas: "0x0",
|
||||
Calls: []callRes{{
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{},
|
||||
Status: "0x1",
|
||||
}, {
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{{
|
||||
Address: core.GetFeeAddress(),
|
||||
Topics: []common.Hash{
|
||||
common.Hash([32]byte{0x4d, 0xfe, 0x1b, 0xbb, 0xcf, 0x07, 0x7d, 0xdc, 0x3e, 0x01, 0x29, 0x1e, 0xea, 0x2d, 0x5c, 0x70, 0xc2, 0xb4, 0x22, 0xb4, 0x15, 0xd9, 0x56, 0x45, 0xb9, 0xad, 0xcf, 0xd6, 0x78, 0xcb, 0x1d, 0x63}),
|
||||
|
|
@ -2576,28 +2547,61 @@ func TestSimulateV1(t *testing.T) {
|
|||
common.BytesToHash(accounts[0].addr.Bytes()),
|
||||
common.BytesToHash(common.HexToAddress("0x000000000000000000000000000000000000ffff").Bytes()),
|
||||
},
|
||||
Data: []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x76, 0xbb, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0xa4, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x76, 0x69, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0xf6, 0x75},
|
||||
BlockNumber: 12,
|
||||
Data: []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x77, 0x0d, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x76, 0xbb, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0x52, 0x27},
|
||||
BlockNumber: 11,
|
||||
TxIndex: 1,
|
||||
Index: 0,
|
||||
},
|
||||
},
|
||||
Status: "0x1",
|
||||
},
|
||||
Status: "0x1",
|
||||
}},
|
||||
}, {
|
||||
Number: "0xc",
|
||||
GasLimit: "0x47e7c4",
|
||||
GasUsed: "0xa44e",
|
||||
Miner: coinbase,
|
||||
BaseFeePerGas: "0x1",
|
||||
Calls: []callRes{{
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{},
|
||||
Status: "0x1",
|
||||
}, {
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{
|
||||
{
|
||||
Address: core.GetFeeAddress(),
|
||||
Topics: []common.Hash{
|
||||
common.Hash([32]byte{0x4d, 0xfe, 0x1b, 0xbb, 0xcf, 0x07, 0x7d, 0xdc, 0x3e, 0x01, 0x29, 0x1e, 0xea, 0x2d, 0x5c, 0x70, 0xc2, 0xb4, 0x22, 0xb4, 0x15, 0xd9, 0x56, 0x45, 0xb9, 0xad, 0xcf, 0xd6, 0x78, 0xcb, 0x1d, 0x63}),
|
||||
common.BytesToHash(core.GetFeeAddress().Bytes()),
|
||||
common.BytesToHash(accounts[0].addr.Bytes()),
|
||||
common.BytesToHash(common.HexToAddress("0x000000000000000000000000000000000000ffff").Bytes()),
|
||||
},
|
||||
Data: []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x76, 0xbb, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0xa4, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xe0, 0x53, 0xbf, 0x1f, 0x76, 0x69, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x15, 0x8e, 0x46, 0x09, 0x13, 0xd0, 0xf6, 0x75},
|
||||
BlockNumber: 12,
|
||||
TxIndex: 1,
|
||||
Index: 0,
|
||||
},
|
||||
},
|
||||
Status: "0x1",
|
||||
}},
|
||||
}, {
|
||||
Number: "0xd",
|
||||
GasLimit: "0x47e7c4",
|
||||
GasUsed: "0x5227",
|
||||
Miner: coinbase,
|
||||
BaseFeePerGas: "0x0",
|
||||
Calls: []callRes{{
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{},
|
||||
Status: "0x1",
|
||||
}},
|
||||
}},
|
||||
}, {
|
||||
Number: "0xd",
|
||||
GasLimit: "0x47e7c4",
|
||||
GasUsed: "0x5227",
|
||||
Miner: coinbase,
|
||||
BaseFeePerGas: "0x0",
|
||||
Calls: []callRes{{
|
||||
ReturnValue: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
GasUsed: "0x5227",
|
||||
Logs: []log{},
|
||||
Status: "0x1",
|
||||
}},
|
||||
}},
|
||||
}, {
|
||||
},
|
||||
*/
|
||||
{
|
||||
name: "basefee-validation-mode",
|
||||
tag: latest,
|
||||
blocks: []simBlock{{
|
||||
|
|
|
|||
Loading…
Reference in a new issue