Skip to content

Commit 86b27ad

Browse files
fix: do not set slot number in Solana's "waitFor" log message (#1861)
This PR drop the slot number from the "wait for" message used for the solana test-container. This is because the solana-test-validator application will often start logging at a higher slot when you configure it with a faster block rate (i.e., with `--ticks-per-slot 20`).
1 parent 28c34d7 commit 86b27ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/components/blockchain/solana.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func newSolana(in *Input) (*Output, error) {
102102
NetworkAliases: map[string][]string{
103103
framework.DefaultNetworkName: {containerName},
104104
},
105-
WaitingFor: wait.ForLog("Processed Slot: 1").
105+
WaitingFor: wait.ForLog("Processed Slot:").
106106
WithStartupTimeout(1 * time.Minute).
107107
WithPollInterval(100 * time.Millisecond),
108108
HostConfigModifier: func(h *container.HostConfig) {

0 commit comments

Comments
 (0)