Skip to content

Commit

Permalink
partial clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaicalinluca committed Dec 6, 2023
1 parent 627bd8e commit 26db4ef
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion framework/base/src/types/managed/wrapped/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub use egld_or_multi_esdt_payment::EgldOrMultiEsdtPayment;
pub(crate) use encoded_managed_vec_item::EncodedManagedVecItem;
pub use esdt_token_data::EsdtTokenData;
pub use esdt_token_payment::{EsdtTokenPayment, MultiEsdtPayment};
pub use fixed_point_biguint::{FixedPoint, Convert};
pub use fixed_point_biguint::{Convert, FixedPoint};
pub use managed_address::ManagedAddress;
pub use managed_buffer_cached_builder::ManagedBufferCachedBuilder;
pub(crate) use managed_byte_array::ManagedBufferSizeContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ use multiversx_sdk::{
utils::base64_decode,
};

use base64::{engine::general_purpose, Engine as _};

use super::{
decode_scr_data_or_panic, is_out_scr, process_topics_error, Log, TxExpect, TxResponseStatus,
};
Expand Down
1 change: 0 additions & 1 deletion framework/snippets/src/interactor_sc_call.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crate::{address_h256_to_erdrs, mandos_to_erdrs_address, Interactor};
use base64::{engine::general_purpose, Engine as _};
use log::info;
use multiversx_sc_scenario::{
api::StaticApi,
Expand Down
1 change: 0 additions & 1 deletion framework/snippets/src/interactor_vm_query.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crate::{address_h256_to_erdrs, Interactor};
use base64::{engine::general_purpose, Engine as _};
use log::info;
use multiversx_sc_scenario::{
api::StaticApi,
Expand Down

0 comments on commit 26db4ef

Please sign in to comment.