Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use fuel-asm instead of fuel-vm #1032

Merged
merged 8 commits into from
Jul 21, 2023
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 @@ -12,11 +12,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
Loading