Skip to content

Commit

Permalink
Merge pull request #1669 from multiversx/import-rust-big-int
Browse files Browse the repository at this point in the history
missing imports: RustBigInt, DebugHandle
  • Loading branch information
andrei-marinica committed Jun 3, 2024
2 parents a9f22d0 + 38c2e6a commit 8c200e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion framework/scenario/src/imports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ pub use crate::multiversx_sc::imports::*;
pub use crate::multiversx_sc::codec::test_util::*;

pub use crate::{
api::{DebugApi, StaticApi},
api::{DebugApi, DebugHandle, StaticApi},
assert_values_eq, bech32,
facade::{
expr::*, result_handlers::*, world_tx::*, ContractInfo, ScenarioWorld, WhiteboxContract,
},
managed_address, managed_biguint, managed_buffer, managed_token_id, num_bigint,
num_bigint::BigInt as RustBigInt,
num_bigint::BigUint as RustBigUint,
rust_biguint,
scenario::{
Expand Down
5 changes: 1 addition & 4 deletions tools/rust-debugger/format-tests/src/format_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ use multiversx_sc::{
ManagedType, ManagedVec, TokenIdentifier,
},
};
use multiversx_sc_scenario::{
api::{DebugApi, DebugHandle},
num_bigint::{BigInt as RustBigInt, BigUint as RustBigUint},
};
use multiversx_sc_scenario::imports::*;

macro_rules! push {
($list: ident, $name:ident, $expected: expr ) => {{
Expand Down

0 comments on commit 8c200e9

Please sign in to comment.