Skip to content

Commit

Permalink
chore: use fuel-asm instead of fuel-vm
Browse files Browse the repository at this point in the history
  • Loading branch information
hal3e committed Jul 7, 2023
1 parent 6efa6f1 commit 634155e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/fuels-programs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bytes = { workspace = true, features = ["serde"] }
fuel-abi-types = { workspace = true }
fuel-tx = { workspace = true }
fuel-types = { workspace = true, features = ["default"] }
fuel-vm = { workspace = true }
fuel-asm = { workspace = true }
fuels-accounts = { workspace = true }
fuels-core = { workspace = true }
hex = { workspace = true, default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels-programs/src/call_utils.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::{collections::HashSet, iter, vec};

use fuel_abi_types::error_codes::FAILED_TRANSFER_TO_ADDRESS_SIGNAL;
use fuel_asm::{op, RegId};
use fuel_tx::{AssetId, Bytes32, ContractId, Output, PanicReason, Receipt, TxPointer, UtxoId};
use fuel_types::{Address, Word};
use fuel_vm::fuel_asm::{op, RegId};
use fuels_accounts::Account;
use fuels_core::{
constants::WORD_SIZE,
Expand Down
1 change: 0 additions & 1 deletion packages/fuels-test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ fuel-core-client = { workspace = true }
fuel-core-types = { workspace = true }
fuel-tx = { workspace = true }
fuel-types = { workspace = true, features = ["random"] }
fuel-vm = { workspace = true }
fuels-accounts = { workspace = true, optional = true }
fuels-core = { workspace = true }
futures = { workspace = true }
Expand Down
12 changes: 7 additions & 5 deletions packages/fuels-test-helpers/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ use fuel_core_chain_config::StateConfig;
use fuel_core_client::client::FuelClient;
use fuel_types::BlockHeight;
use fuel_types::Word;
use fuel_vm::consts::WORD_SIZE;
use fuels_core::types::{
coin::Coin,
errors::{error, Error},
message::Message,
use fuels_core::{
constants::WORD_SIZE,
types::{
coin::Coin,
errors::{error, Error},
message::Message,
},
};
use portpicker::{is_free, pick_unused_port};
use serde::{de::Error as SerdeError, Deserializer, Serializer};
Expand Down

0 comments on commit 634155e

Please sign in to comment.