-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(blockifier): share get_block_hash syscall code between nativ…
…e and casm (#2107)
- Loading branch information
1 parent
d6bb457
commit ef8f923
Showing
4 changed files
with
58 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/// This file is for sharing common logic between Native and Casm syscalls implementations. | ||
use starknet_api::core::ContractAddress; | ||
use starknet_api::state::StorageKey; | ||
use starknet_types_core::felt::Felt; | ||
|
||
use crate::abi::constants; | ||
use crate::execution::common_hints::ExecutionMode; | ||
use crate::execution::entry_point::EntryPointExecutionContext; | ||
use crate::execution::syscalls::hint_processor::{ | ||
SyscallExecutionError, | ||
BLOCK_NUMBER_OUT_OF_RANGE_ERROR, | ||
}; | ||
use crate::state::state_api::State; | ||
|
||
pub type SyscallResult<T> = Result<T, SyscallExecutionError>; | ||
|
||
pub fn get_block_hash_base( | ||
context: &EntryPointExecutionContext, | ||
requested_block_number: u64, | ||
state: &dyn State, | ||
) -> SyscallResult<Felt> { | ||
let execution_mode = context.execution_mode; | ||
if execution_mode == ExecutionMode::Validate { | ||
return Err(SyscallExecutionError::InvalidSyscallInExecutionMode { | ||
syscall_name: "get_block_hash".to_string(), | ||
execution_mode, | ||
}); | ||
} | ||
|
||
let current_block_number = context.tx_context.block_context.block_info.block_number.0; | ||
|
||
if current_block_number < constants::STORED_BLOCK_HASH_BUFFER | ||
|| requested_block_number > current_block_number - constants::STORED_BLOCK_HASH_BUFFER | ||
{ | ||
let out_of_range_error = Felt::from_hex(BLOCK_NUMBER_OUT_OF_RANGE_ERROR) | ||
.expect("Converting BLOCK_NUMBER_OUT_OF_RANGE_ERROR to Felt should not fail."); | ||
return Err(SyscallExecutionError::SyscallError { error_data: vec![out_of_range_error] }); | ||
} | ||
|
||
let key = StorageKey::try_from(Felt::from(requested_block_number))?; | ||
let block_hash_contract_address = | ||
ContractAddress::try_from(Felt::from(constants::BLOCK_HASH_CONTRACT_ADDRESS))?; | ||
Ok(state.get_storage_at(block_hash_contract_address, key)?) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters