Skip to content

Commit d70db91

Browse files
fix(solana): fix broken smoke test (#1547)
The smoke test was expecting the mcm.so file due to the config in `blockchain_a.solana_programs` , since we dont provide any program to deploy in the smoke test, we should not define that config. I have also updated the default port for solana to be 8999 as that is the default port for solana test validator and it is what users would expect.
1 parent cdc37af commit d70db91

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

framework/components/blockchain/solana.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func defaultSolana(in *Input) {
4040
in.Image = "solanalabs/solana:v1.18.26"
4141
}
4242
if in.Port == "" {
43-
in.Port = "8545"
43+
in.Port = "8999"
4444
}
4545
}
4646

framework/examples/myproject/smoke_solana.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,3 @@
33
type = "solana"
44
public_key = "9n1pyVGGo6V4mpiSDMVay5As9NurEkY283wwRk1Kto2C"
55
contracts_dir = "."
6-
image = "solanalabs/solana:v1.18.26"
7-
8-
[blockchain_a.solana_programs]
9-
mcm = "6UmMZr5MEqiKWD5jqTJd1WCR5kT8oZuFYBLJFi1o6GQX"

0 commit comments

Comments
 (0)