From 5ac1bab0b17f76f00985697e2a732b4bfad625d4 Mon Sep 17 00:00:00 2001
From: Philip Offtermatt
Date: Fri, 25 Aug 2023 10:31:54 +0200
Subject: [PATCH] Add waitBlocks for *both* chains on relayPackets
---
tests/e2e/actions.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go
index d7fba4a358..fccc27a957 100644
--- a/tests/e2e/actions.go
+++ b/tests/e2e/actions.go
@@ -1309,6 +1309,7 @@ func (tr TestRun) relayPacketsGorelayer(
}
tr.waitBlocks(action.chainA, 1, 30*time.Second)
+ tr.waitBlocks(action.chainB, 1, 30*time.Second)
}
func (tr TestRun) relayPacketsHermes(
@@ -1332,6 +1333,7 @@ func (tr TestRun) relayPacketsHermes(
}
tr.waitBlocks(action.chainA, 1, 30*time.Second)
+ tr.waitBlocks(action.chainB, 1, 30*time.Second)
}
type relayRewardPacketsToProviderAction struct {