Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
bitzoic committed Jan 30, 2025
1 parent eedc345 commit 9b0097f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libs/src/admin.sw
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub mod errors;
use ::admin::errors::AdminError;
use ::ownership::{_owner, only_owner};
use standards::src5::State;
use std::{auth::msg_sender, hash::{Hash, sha256}, storage::storage_api::clear,};
use std::{auth::msg_sender, hash::{Hash, sha256}, storage::storage_api::clear};

// Sets a new administrator.
///
Expand Down
2 changes: 1 addition & 1 deletion libs/src/bytecode/utils.sw
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
library;

use std::{alloc::{alloc, alloc_bytes, realloc_bytes}, bytes::Bytes,};
use std::{alloc::{alloc, alloc_bytes, realloc_bytes}, bytes::Bytes};

/// Pre-defined number of bytes of a leaf in a bytecode merkle tree.
const LEAF_SIZE = 16 * 1024;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
contract;

use std::{hash::*, math::*, storage::storage_vec::*,};
use std::{hash::*, math::*, storage::storage_vec::*};

struct SimpleStruct {
x: u32,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
contract;

use std::{auth::*, call_frames::*,};
use std::{auth::*, call_frames::*};

use reentrancy_target_abi::Target;
use reentrancy_attacker_abi::Attacker;
Expand Down

0 comments on commit 9b0097f

Please sign in to comment.