Skip to content

Commit

Permalink
chore: bump sdk to 0.43, fuel-core to 0.18.2 (FuelLabs#4669)
Browse files Browse the repository at this point in the history
## Description
This PR bumps sdk to 0.43.0, and fuel-core to 0.18.2.
  • Loading branch information
kayagokalp authored Jun 15, 2023
1 parent 38a2b55 commit e4a5f3d
Show file tree
Hide file tree
Showing 41 changed files with 201 additions and 193 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:
runs-on: ubuntu-latest
services:
fuel-core:
image: ghcr.io/fuellabs/fuel-core:v0.18.1
image: ghcr.io/fuellabs/fuel-core:v0.18.2
ports:
- 4000:4000
steps:
Expand Down
124 changes: 63 additions & 61 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,10 @@ fuel-asm = "0.31.1"
fuel-crypto = "0.31.1"
fuel-types = "0.31.1"
fuel-tx = "0.31.1"
fuel-core-client = "0.18.1"
fuel-vm = "0.31.1"
fuels-core = "0.42"
fuels-accounts = "0.42"
fuels-types = "0.42"
fuel-core-client = "0.18.2"
fuel-vm = "0.31.2"
fuels-core = "0.43"
fuels-accounts = "0.43"

[workspace.package]
edition = "2021"
Expand Down
1 change: 0 additions & 1 deletion forc-plugins/forc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ fuel-tx = { workspace = true, features = ["builder"] }
fuel-vm = { workspace = true }
fuels-accounts = { workspace = true }
fuels-core = { workspace = true }
fuels-types = { workspace = true }
futures = "0.3"
hex = "0.4.3"
rand = "0.8"
Expand Down
10 changes: 6 additions & 4 deletions forc-plugins/forc-client/src/util/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ use fuel_tx::{
field, Address, AssetId, Buildable, ContractId, Input, Output, TransactionBuilder, Witness,
};
use fuel_vm::prelude::SerializableVec;
use fuels_accounts::{provider::Provider, ViewOnlyAccount, Wallet};
use fuels_types::bech32::Bech32Address;
use fuels_types::coin_type::CoinType;
use fuels_types::transaction_builders::{create_coin_input, create_coin_message_input};
use fuels_accounts::{provider::Provider, wallet::Wallet, ViewOnlyAccount};
use fuels_core::types::{
bech32::Bech32Address,
coin_type::CoinType,
transaction_builders::{create_coin_input, create_coin_message_input},
};

/// The maximum time to wait for a transaction to be included in a block by the node
pub const TX_SUBMIT_TIMEOUT_MS: u64 = 30_000u64;
Expand Down
Loading

0 comments on commit e4a5f3d

Please sign in to comment.