gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: off-by-one error


From: gnunet
Subject: [taler-deployment] branch master updated: off-by-one error
Date: Fri, 02 Jul 2021 17:34:25 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 34cf3bf  off-by-one error
34cf3bf is described below

commit 34cf3bf3b5b84290cef415dab31045f5d83d63cd
Author: ms <ms@taler.net>
AuthorDate: Fri Jul 2 17:34:21 2021 +0200

    off-by-one error
---
 buildbot/check_tip_reserve.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildbot/check_tip_reserve.py b/buildbot/check_tip_reserve.py
index f12235b..b54d651 100755
--- 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"))

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]