We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92df0e commit 0f81147Copy full SHA for 0f81147
framework/components/blockchain/sui.go
@@ -81,10 +81,9 @@ func defaultSui(in *Input) {
81
if in.Image == "" {
82
in.Image = "mysten/sui-tools:devnet"
83
}
84
- if in.Port != "" {
85
- framework.L.Warn().Msgf("'port' field is set but only default port can be used: %s", DefaultSuiNodePort)
+ if in.Port == "" {
+ in.Port = DefaultSuiNodePort
86
87
- in.Port = DefaultSuiNodePort
88
89
90
func newSui(in *Input) (*Output, error) {
@@ -127,6 +126,7 @@ func newSui(in *Input) (*Output, error) {
127
126
"start",
128
"--force-regenesis",
129
"--with-faucet",
+ "--fullnode-rpc-port", in.Port,
130
},
131
Files: []testcontainers.ContainerFile{
132
{
0 commit comments