From c2861fd9f97d65b6fc43a6332b09ee5cf25b82f3 Mon Sep 17 00:00:00 2001 From: danwt <30197399+danwt@users.noreply.github.com> Date: Wed, 11 Sep 2024 12:06:35 +0100 Subject: [PATCH] fix: use correct bool to check if connecting rollapp <-> hub --- cmd/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tx.go b/cmd/tx.go index 623b5d063..ef4ea9c3a 100644 --- a/cmd/tx.go +++ b/cmd/tx.go @@ -604,7 +604,7 @@ func isRollapp(src, dst *relayer.Chain) bool { if !ok { return false } - return srcP.DymHub || dstP.DymHub + return srcP.DymRollapp || dstP.DymRollapp } func closeChannelCmd(a *appState) *cobra.Command {