Skip to content

Commit

Permalink
dev: remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh Bajpai authored and Harsh Bajpai committed Oct 18, 2023
1 parent 0834bb6 commit a61a8c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
version: 0.1
cli:
version: 1.16.2
version: 1.17.1
plugins:
sources:
- id: trunk
Expand Down
2 changes: 1 addition & 1 deletion crates/ef-testing/src/evm_sequencer/evm_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl EvmState for KakarotSequencer {
for ((var, keys), v) in storage {
(&mut self.0.state).set_storage_at(
starknet_address,
get_storage_var_address(var, &keys), // safe unwrap: all vars are ASCII
get_storage_var_address(var, &keys),
v,
);
}
Expand Down
2 changes: 1 addition & 1 deletion crates/ef-testing/src/evm_sequencer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl KakarotSequencer {
for (k, v) in storage {
(&mut self.0.state).set_storage_at(
*KAKAROT_ADDRESS,
get_storage_var_address(k, &[]), // safe unwrap: all vars are ASCII
get_storage_var_address(k, &[]),
v,
);
}
Expand Down

0 comments on commit a61a8c5

Please sign in to comment.