Skip to content

Commit

Permalink
[move examples] Depend only on local framework not devnet for examples (
Browse files Browse the repository at this point in the history
#18461)

## Description 

These started failing after some new macros landed, and we should be
depending on the local framework and not devnet for them.

## Test plan 

CI
  • Loading branch information
tzakian authored Jun 28, 2024
1 parent 4044d7d commit e773182
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/move/transfer-to-object/common/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
edition = "2024.beta"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/devnet" }
Sui = { local = "../../../../crates/sui-framework/packages/sui-framework" }

[addresses]
common = "0x0"
2 changes: 1 addition & 1 deletion examples/move/transfer-to-object/owned-no-tto/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
edition = "2024.beta"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/devnet" }
Sui = { local = "../../../../crates/sui-framework/packages/sui-framework" }
common = { local = "../common" }

[addresses]
Expand Down
2 changes: 1 addition & 1 deletion examples/move/transfer-to-object/shared-no-tto/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
edition = "2024.beta"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/devnet" }
Sui = { local = "../../../../crates/sui-framework/packages/sui-framework" }
common = { local = "../common" }

[addresses]
Expand Down
2 changes: 1 addition & 1 deletion examples/move/transfer-to-object/shared-with-tto/Move.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
edition = "2024.beta"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/devnet" }
Sui = { local = "../../../../crates/sui-framework/packages/sui-framework" }
common = { local = "../common" }

[addresses]
Expand Down

0 comments on commit e773182

Please sign in to comment.