From dee908595775270d6483b37b970c16aeca5ab824 Mon Sep 17 00:00:00 2001 From: Olexandr88 Date: Tue, 27 Jan 2026 11:32:19 +0200 Subject: [PATCH] fix: correct binary selection logic --- tests/common/network.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/common/network.go b/tests/common/network.go index 8457b07..6c136a1 100644 --- a/tests/common/network.go +++ b/tests/common/network.go @@ -34,8 +34,9 @@ func (s *NetworkTestSuite) InitChain(version string, binary string) { if version == "v0.1.1" { binary = "nilliond" + } else { + binary = "nilchaind" } - binary = "nilchaind" client, network := interchaintest.DockerSetup(t) s.DockerClient = client