summaryrefslogtreecommitdiff
path: root/src/auditor/test-sync.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-06 21:51:39 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-06 21:51:39 +0200
commitfb5037b8e3e84ab49eaf7cf82947aef75d942872 (patch)
treec7f4530aa8e893b708f05d31d8b2905c7190310f /src/auditor/test-sync.sh
parent36a6731a1a136e8c01be569d040f9bc29adfc13f (diff)
downloadexchange-fb5037b8e3e84ab49eaf7cf82947aef75d942872.tar.gz
exchange-fb5037b8e3e84ab49eaf7cf82947aef75d942872.tar.bz2
exchange-fb5037b8e3e84ab49eaf7cf82947aef75d942872.zip
-work on auditor tests
Diffstat (limited to 'src/auditor/test-sync.sh')
-rwxr-xr-xsrc/auditor/test-sync.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auditor/test-sync.sh b/src/auditor/test-sync.sh
index a69201a8a..3ab6fa1e4 100755
--- a/src/auditor/test-sync.sh
+++ b/src/auditor/test-sync.sh
@@ -22,8 +22,8 @@ taler-auditor-sync -s test-sync-in.conf -d test-sync-out.conf -t
for table in denominations denomination_revocations wire_targets reserves reserves_in reserves_close reserves_out auditors auditor_denom_sigs exchange_sign_keys signkey_revocations extensions extension_details known_coins refresh_commitments refresh_revealed_coins refresh_transfer_keys deposits refunds wire_out aggregation_tracking wire_fee recoup recoup_refresh
do
echo -n "."
- CIN=`echo "SELECT COUNT(*) FROM $table" | psql talercheck-in -Aqt`
- COUT=`echo "SELECT COUNT(*) FROM $table" | psql talercheck-out -Aqt`
+ CIN=`echo "SELECT COUNT(*) FROM exchange.$table" | psql talercheck-in -Aqt`
+ COUT=`echo "SELECT COUNT(*) FROM exchange.$table" | psql talercheck-out -Aqt`
if test ${CIN} != ${COUT}
then