Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion framework/components/blockchain/sui.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func generateKeyData(ctx context.Context, containerName string, keyCipherType st

func defaultSui(in *Input) {
if in.Image == "" {
in.Image = "mysten/sui-tools:devnet-v1.61.0"
in.Image = "mysten/sui-tools:devnet-v1.68.0"
}
Comment on lines 83 to 85
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default Sui image tag changed from devnet-... to mainnet-... while the code still starts a local node with --force-regenesis --with-faucet. If the intent is only a version bump, consider keeping the same release channel (e.g., devnet-v1.68.1) or otherwise document/justify the behavior change, since this alters the default runtime behavior for anyone not explicitly setting Input.Image.

Copilot uses AI. Check for mistakes.
if in.Port == "" {
in.Port = DefaultSuiNodePort
Expand Down
Loading