Skip to content

Commit

Permalink
remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Sep 21, 2023
1 parent 46104a2 commit 4f3f4f5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions crates/sequencer/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ impl BlockifierState for &mut State {
}

impl BlockifierStateReader for &mut State {
/// Default: 0 for an uninitialized contract address or key.
fn get_storage_at(
&mut self,
contract_address: ContractAddress,
Expand All @@ -104,7 +103,6 @@ impl BlockifierStateReader for &mut State {
.unwrap_or_default())
}

/// Default: 0 for an uninitialized contract address.
fn get_nonce_at(&mut self, contract_address: ContractAddress) -> StateResult<Nonce> {
Ok(self
.nonces
Expand All @@ -113,7 +111,6 @@ impl BlockifierStateReader for &mut State {
.unwrap_or_default())
}

/// Default: 0 for an uninitialized contract address.
fn get_class_hash_at(&mut self, contract_address: ContractAddress) -> StateResult<ClassHash> {
Ok(self
.contracts
Expand Down

0 comments on commit 4f3f4f5

Please sign in to comment.