From 869a791ecd371245f4c7045ed48317615a8e8302 Mon Sep 17 00:00:00 2001 From: Todd Nowacki Date: Tue, 19 Dec 2023 13:06:30 -0800 Subject: [PATCH] [move][examples] Remove hard testnet dependency (#15428) ## Description - Removed direct link to testnet ## Test Plan - ran tests --- If your changes are not user-facing and not a breaking change, you can skip the following section. Otherwise, please indicate what changed, and then add to the Release Notes section as highlighted during the release process. ### Type of Change (Check all that apply) - [ ] protocol change - [ ] user-visible impact - [ ] breaking change for a client SDKs - [ ] breaking change for FNs (FN binary must upgrade) - [ ] breaking change for validators or node operators (must upgrade binaries) - [ ] breaking change for on-chain data layout - [ ] necessitate either a data wipe or data migration ### Release notes --- examples/move/locked_stake/Move.toml | 4 ++-- examples/move/object_bound/Move.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/move/locked_stake/Move.toml b/examples/move/locked_stake/Move.toml index 4f565aa4f4a79..da7003ad61f01 100644 --- a/examples/move/locked_stake/Move.toml +++ b/examples/move/locked_stake/Move.toml @@ -3,8 +3,8 @@ name = "Locked Stake" version = "0.0.1" [dependencies] -Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" } -SuiSystem = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-system", rev = "framework/testnet" } +Sui = { local = "../../../crates/sui-framework/packages/sui-framework" } +SuiSystem = { local = "../../../crates/sui-framework/packages/sui-system" } [addresses] locked_stake = "0x0" diff --git a/examples/move/object_bound/Move.toml b/examples/move/object_bound/Move.toml index 08a8330791597..60ba1a58c7afa 100644 --- a/examples/move/object_bound/Move.toml +++ b/examples/move/object_bound/Move.toml @@ -3,7 +3,7 @@ name = "ObjectBound" version = "0.0.1" [dependencies] -Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" } +Sui = { local = "../../../crates/sui-framework/packages/sui-framework" } [addresses] obo = "0x0"