From 160c51b3e4fb8ebf0f5daede59c05e3aa9cd02fd Mon Sep 17 00:00:00 2001 From: Moji Date: Mon, 28 Oct 2024 18:02:11 +0330 Subject: [PATCH] chore: bump txsim version (#4009) There was an issue with the txsim that did not allow the E2ESimple test to run; consequently, ongoing celestia-node e2e tests fail. ```sh /opt/entrypoint.sh: illegal option -- - Invalid option: ``` Thanks to @smuu for his investigation to discover the root cause of the issue and to propose a solution that bumps the txsim version to make it work. This PR proposes a version bump for txsim docker image in the e2e test. --- test/e2e/testnet/defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/testnet/defaults.go b/test/e2e/testnet/defaults.go index 6c6da2cbf9..a02ff9a70a 100644 --- a/test/e2e/testnet/defaults.go +++ b/test/e2e/testnet/defaults.go @@ -10,7 +10,7 @@ var DefaultResources = Resources{ } const ( - TxsimVersion = "pr-3541" + TxsimVersion = "8e573bb" MB = 1000 * 1000 GB = 1000 * MB MiB = 1024 * 1024