Merge pull request #6092 from paritytech/returndata-fix
Place RETURNDATA behind block number gate
This commit is contained in:
commit
253bc333c7
@ -211,6 +211,7 @@ impl<Cost: CostType> Interpreter<Cost> {
|
|||||||
if (instruction == instructions::DELEGATECALL && !schedule.have_delegate_call) ||
|
if (instruction == instructions::DELEGATECALL && !schedule.have_delegate_call) ||
|
||||||
(instruction == instructions::CREATE2 && !schedule.have_create2) ||
|
(instruction == instructions::CREATE2 && !schedule.have_create2) ||
|
||||||
(instruction == instructions::STATICCALL && !schedule.have_static_call) ||
|
(instruction == instructions::STATICCALL && !schedule.have_static_call) ||
|
||||||
|
((instruction == instructions::RETURNDATACOPY || instruction == instructions::RETURNDATASIZE) && !schedule.have_return_data) ||
|
||||||
(instruction == instructions::REVERT && !schedule.have_revert) {
|
(instruction == instructions::REVERT && !schedule.have_revert) {
|
||||||
|
|
||||||
return Err(evm::Error::BadInstruction {
|
return Err(evm::Error::BadInstruction {
|
||||||
|
@ -107,6 +107,8 @@ pub struct Schedule {
|
|||||||
pub blockhash_gas: usize,
|
pub blockhash_gas: usize,
|
||||||
/// Static Call opcode enabled.
|
/// Static Call opcode enabled.
|
||||||
pub have_static_call: bool,
|
pub have_static_call: bool,
|
||||||
|
/// RETURNDATA and RETURNDATASIZE opcodes enabled.
|
||||||
|
pub have_return_data: bool,
|
||||||
/// Kill basic accounts below this balance if touched.
|
/// Kill basic accounts below this balance if touched.
|
||||||
pub kill_dust: CleanDustMode,
|
pub kill_dust: CleanDustMode,
|
||||||
}
|
}
|
||||||
@ -140,6 +142,7 @@ impl Schedule {
|
|||||||
have_delegate_call: true,
|
have_delegate_call: true,
|
||||||
have_create2: false,
|
have_create2: false,
|
||||||
have_revert: false,
|
have_revert: false,
|
||||||
|
have_return_data: false,
|
||||||
stack_limit: 1024,
|
stack_limit: 1024,
|
||||||
max_depth: 1024,
|
max_depth: 1024,
|
||||||
tier_step_gas: [0, 2, 3, 5, 8, 10, 20, 0],
|
tier_step_gas: [0, 2, 3, 5, 8, 10, 20, 0],
|
||||||
@ -190,6 +193,7 @@ impl Schedule {
|
|||||||
schedule.have_create2 = true;
|
schedule.have_create2 = true;
|
||||||
schedule.have_revert = true;
|
schedule.have_revert = true;
|
||||||
schedule.have_static_call = true;
|
schedule.have_static_call = true;
|
||||||
|
schedule.have_return_data = true;
|
||||||
schedule.blockhash_gas = 350;
|
schedule.blockhash_gas = 350;
|
||||||
schedule
|
schedule
|
||||||
}
|
}
|
||||||
@ -200,6 +204,7 @@ impl Schedule {
|
|||||||
have_delegate_call: hdc,
|
have_delegate_call: hdc,
|
||||||
have_create2: false,
|
have_create2: false,
|
||||||
have_revert: false,
|
have_revert: false,
|
||||||
|
have_return_data: false,
|
||||||
stack_limit: 1024,
|
stack_limit: 1024,
|
||||||
max_depth: 1024,
|
max_depth: 1024,
|
||||||
tier_step_gas: [0, 2, 3, 5, 8, 10, 20, 0],
|
tier_step_gas: [0, 2, 3, 5, 8, 10, 20, 0],
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 4e8b9be3fba16ec32e0cdf50b8f9329826283aaa
|
Subproject commit ef191fdc61cf76cdb9cdc147465fb447304b0ed2
|
@ -100,6 +100,7 @@ impl CommonParams {
|
|||||||
schedule.have_create2 = block_number >= self.eip86_transition;
|
schedule.have_create2 = block_number >= self.eip86_transition;
|
||||||
schedule.have_revert = block_number >= self.eip140_transition;
|
schedule.have_revert = block_number >= self.eip140_transition;
|
||||||
schedule.have_static_call = block_number >= self.eip214_transition;
|
schedule.have_static_call = block_number >= self.eip214_transition;
|
||||||
|
schedule.have_return_data = block_number >= self.eip211_transition;
|
||||||
if block_number >= self.eip210_transition {
|
if block_number >= self.eip210_transition {
|
||||||
schedule.blockhash_gas = 350;
|
schedule.blockhash_gas = 350;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user