Skip to content

Commit 7609353

Browse files
authored
feat: make latest toolchain point to testnet (#618)
1 parent a26d04e commit 7609353

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/constants.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ pub const FUEL_TOOLCHAIN_TOML_FILE: &str = "fuel-toolchain.toml";
55
pub const FUELS_VERSION_FILE: &str = "fuels_version";
66

77
pub const CHANNEL_LATEST_URL: &str =
8-
"https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-beta-5.toml";
9-
pub const CHANNEL_LATEST_FILE_NAME: &str = "channel-fuel-beta-5.toml";
8+
"https://raw.githubusercontent.com/FuelLabs/fuelup/gh-pages/channel-fuel-testnet.toml";
9+
pub const CHANNEL_LATEST_FILE_NAME: &str = "channel-fuel-testnet.toml";
1010
pub const CHANNEL_NIGHTLY_FILE_NAME: &str = "channel-fuel-nightly.toml";
1111
pub const CHANNEL_BETA_1_FILE_NAME: &str = "channel-fuel-beta-1.toml";
1212
pub const CHANNEL_BETA_2_FILE_NAME: &str = "channel-fuel-beta-2.toml";

tests/component.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ fn fuelup_component_add() -> Result<()> {
1515
let _ = cfg.fuelup(&["component", "add", "fuel-core"]);
1616
expect_files_exist(
1717
&cfg.toolchain_bin_dir("my_toolchain"),
18-
&["fuel-core", "fuel-core-keygen"],
18+
&[
19+
"fuel-core",
20+
"fuel-core-keygen",
21+
"fuel-core-wasm-executor.wasm",
22+
],
1923
);
2024
})?;
2125

0 commit comments

Comments
 (0)