Skip to content
Open
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
17 changes: 8 additions & 9 deletions core/scripts/cre/environment/environment/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
libc "github.com/smartcontractkit/chainlink/system-tests/lib/conversions"
"github.com/smartcontractkit/chainlink/system-tests/lib/cre"
libcontracts "github.com/smartcontractkit/chainlink/system-tests/lib/cre/contracts"
gateway "github.com/smartcontractkit/chainlink/system-tests/lib/cre/don/jobs/gateway"
"github.com/smartcontractkit/chainlink/system-tests/lib/cre/don/jobs/gateway"
creenv "github.com/smartcontractkit/chainlink/system-tests/lib/cre/environment"
"github.com/smartcontractkit/chainlink/system-tests/lib/crecli"
libformat "github.com/smartcontractkit/chainlink/system-tests/lib/format"
Expand Down Expand Up @@ -765,14 +765,13 @@ func PrintCRELogo() {
blue := "\033[38;5;33m"
reset := "\033[0m"

fmt.Println()
fmt.Println(blue + " db .d88b. .o88b. .d8b. db .o88b. d8888b. d88888b" + reset)
fmt.Println(blue + " 88 .8P Y8. d8P Y8 d8' `8b 88 d8P Y8 88 `8D 88'" + reset)
fmt.Println(blue + " 88 88 88 8P 88ooo88 88 8P 88oobY' 88ooooo" + reset)
fmt.Println(blue + " 88 88 88 8b 88~~~88 88 8b 88`8b 88~~~~~" + reset)
fmt.Println(blue + " 88booo. `8b d8' Y8b d8 88 88 88booo. Y8b d8 88 `88. 88." + reset)
fmt.Println(blue + " Y88888P `Y88P' `Y88P' YP YP Y88888P `Y88P' 88 YD Y88888P" + reset)
fmt.Println()
fmt.Println("\n" +
blue + " db .d88b. .o88b. .d8b. db .o88b. d8888b. d88888b" + reset + "\n" +
blue + " 88 .8P Y8. d8P Y8 d8' `8b 88 d8P Y8 88 `8D 88'" + reset + "\n" +
blue + " 88 88 88 8P 88ooo88 88 8P 88oobY' 88ooooo" + reset + "\n" +
blue + " 88 88 88 8b 88~~~88 88 8b 88`8b 88~~~~~" + reset + "\n" +
blue + " 88booo. `8b d8' Y8b d8 88 88 88booo. Y8b d8 88 `88. 88." + reset + "\n" +
blue + " Y88888P `Y88P' `Y88P' YP YP Y88888P `Y88P' 88 YD Y88888P" + reset + "\n")
}

func defaultCtfConfigs(topologyFlag string) error {
Expand Down
Loading