commit 70ee81afbdde0e715c8a385460c3c2e6b58a9b6f
parent e056f1079dad8b9c96d7e9e55a345fb044270aef
Author: MS <ms@taler.net>
Date: Tue, 7 Sep 2021 08:11:12 +0000
logging
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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: