Skip to content

Commit 75c98ee

Browse files
committed
refactor: unify use::std import in metadata_message.sw
1 parent 09cd458 commit 75c98ee

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

packages/fungible-token/bridge-fungible-token/src/data_structures/metadata_message.sw

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
library;
22

3-
use std::alloc::alloc_bytes;
4-
use std::bytes::*;
5-
use std::constants::ZERO_B256;
6-
use std::string::String;
7-
use std::inputs::input_message_data;
8-
use std::primitive_conversions::u64::*;
3+
use std::{
4+
alloc::alloc_bytes,
5+
bytes::*,
6+
constants::ZERO_B256,
7+
inputs::input_message_data,
8+
primitive_conversions::u64::*,
9+
string::String,
10+
};
911
use ::data_structures::constants::{
1012
OFFSET_NAME_PTR,
1113
OFFSET_SYMBOL_PTR,

0 commit comments

Comments
 (0)