commit 34cf3bf3b5b84290cef415dab31045f5d83d63cd
parent 89f6b08232ba28c1f4883a7e5b615f20134a96ae
Author: ms <ms@taler.net>
Date: Fri, 2 Jul 2021 17:34:21 +0200
off-by-one error
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildbot/check_tip_reserve.py b/buildbot/check_tip_reserve.py
@@ -42,7 +42,7 @@ if len(reserves) == 0:
exit(1)
max_amount = Amount(TALER_CONFIG_CURRENCY, 0, 0)
-for item in reserves[1:]:
+for item in reserves:
committed_amount = Amount.parse(item.get("committed_amount"))
print("Committed amount: " + committed_amount)
allocated_amount = Amount.parse(item.get("merchant_initial_amount"))