summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2021-09-07 08:11:12 +0000
committerMS <ms@taler.net>2021-09-07 08:11:12 +0000
commit70ee81afbdde0e715c8a385460c3c2e6b58a9b6f (patch)
treed809788f3d0acd20ee7b38e4a0d563a3f1f65555
parente056f1079dad8b9c96d7e9e55a345fb044270aef (diff)
downloaddeployment-70ee81afbdde0e715c8a385460c3c2e6b58a9b6f.tar.gz
deployment-70ee81afbdde0e715c8a385460c3c2e6b58a9b6f.tar.bz2
deployment-70ee81afbdde0e715c8a385460c3c2e6b58a9b6f.zip
logging
-rwxr-xr-xbuildbot/check_tip_reserve.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildbot/check_tip_reserve.py b/buildbot/check_tip_reserve.py
index 797a8e5..f682a1a 100755
--- a/buildbot/check_tip_reserve.py
+++ b/buildbot/check_tip_reserve.py
@@ -47,6 +47,7 @@ for item in reserves:
allocated_amount = Amount.parse(item.get("merchant_initial_amount"))
confirmed_amount = Amount.parse(item.get("exchange_initial_amount"))
if allocated_amount != confirmed_amount:
+ print("WARNING: merchant_initial_amount != exchange_initial_amount")
exit(1)
remaining_amount = allocated_amount - committed_amount
if remaining_amount > max_amount: