Skip to content

Commit

Permalink
changed visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
BiancaIalangi committed Mar 11, 2024
1 parent 958f2ae commit a25c81b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
use adder::*;
use multiversx_sc::{
storage::mappers::SingleValue,
types::{AddressExpr, ScExpr, WithResultNewAddress, WithResultSimilar},
};
use multiversx_sc::types::{AddressExpr, ScExpr, WithResultNewAddress, WithResultSimilar};
use multiversx_sc_scenario::{api::StaticApi, num_bigint::BigUint, scenario_model::*, *};

const ADDER_PATH_EXPR: &str = "mxsc:output/adder.mxsc.json";
Expand Down
5 changes: 1 addition & 4 deletions contracts/examples/adder/tests/adder_blackbox_test.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
use adder::*;
use multiversx_sc::{
storage::mappers::SingleValue,
types::{AddressExpr, ReturnsSimilar, ScExpr, WithResultNewAddress},
};
use multiversx_sc::types::{AddressExpr, ReturnsSimilar, ScExpr, WithResultNewAddress};
use multiversx_sc_scenario::{api::StaticApi, num_bigint::BigUint, scenario_model::*, *};

const ADDER_PATH_EXPR: &str = "mxsc:output/adder.mxsc.json";
Expand Down
30 changes: 15 additions & 15 deletions framework/base/src/types/managed/basic/mod.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
pub mod big_float;
pub mod big_float_cmp;
pub mod big_float_operators;
pub mod big_int;
pub mod big_int_cmp;
pub mod big_int_operators;
pub mod big_int_sign;
pub mod big_num_cmp;
pub mod big_uint;
pub mod big_uint_cmp;
pub mod big_uint_operators;
pub mod cast_to_i64;
pub mod elliptic_curve;
pub mod managed_buffer;
pub mod managed_map;
mod big_float;
mod big_float_cmp;
mod big_float_operators;
mod big_int;
mod big_int_cmp;
mod big_int_operators;
mod big_int_sign;
mod big_num_cmp;
mod big_uint;
mod big_uint_cmp;
mod big_uint_operators;
mod cast_to_i64;
mod elliptic_curve;
mod managed_buffer;
mod managed_map;

pub use big_float::BigFloat;
pub use big_int::BigInt;
Expand Down

0 comments on commit a25c81b

Please sign in to comment.