From ed93ba0ceaabed0cdbfb4535be74a98e3d6ddc8a Mon Sep 17 00:00:00 2001
From: Philip Offtermatt
Date: Wed, 3 Jul 2024 13:44:27 +0200
Subject: [PATCH] Adjust comment
---
tests/e2e/steps_inactive_vals.go | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/e2e/steps_inactive_vals.go b/tests/e2e/steps_inactive_vals.go
index 3fbdbe19d0..81b511ce51 100644
--- a/tests/e2e/steps_inactive_vals.go
+++ b/tests/e2e/steps_inactive_vals.go
@@ -43,7 +43,9 @@ func stepsInactiveProviderValidators() []Step {
},
Rewards: &Rewards{
IsNativeDenom: true, // check for rewards in the provider denom
- IsIncrementalReward: true, // check current rewards, because alice gets one block of rewards due to being in the genesis
+ IsIncrementalReward: true, // we need to get incremental rewards
+ // if we would look at total rewards, alice would trivially also get rewards,
+ // because she gets rewards in the first block due to being in the genesis
IsRewarded: map[ValidatorID]bool{
ValidatorID("alice"): false,
ValidatorID("bob"): true,