Skip to content

Commit

Permalink
lint(fmt): fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfertel committed Apr 3, 2024
1 parent 29a496a commit 9cce8b7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 3 additions & 4 deletions lib/grip/src/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pub use crate::context::with_context;
pub use crate::grip_proc::test;
pub use crate::shims::*;
pub use crate::storage::reset_storage;
pub use crate::{
context::with_context, grip_proc::test, shims::*, storage::reset_storage,
};
1 change: 1 addition & 0 deletions lib/grip/src/proc.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

3 changes: 2 additions & 1 deletion lib/grip/src/shims.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@
#![allow(clippy::missing_safety_doc)]
use std::slice;

use crate::storage::{read_bytes32, write_bytes32, STORAGE};
use tiny_keccak::{Hasher, Keccak};

use crate::storage::{read_bytes32, write_bytes32, STORAGE};

pub(crate) const WORD_BYTES: usize = 32;
pub(crate) type Bytes32 = [u8; WORD_BYTES];

Expand Down

0 comments on commit 9cce8b7

Please sign in to comment.