summaryrefslogtreecommitdiff
path: root/talerbank
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-09-10 12:43:35 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-09-10 12:43:35 +0200
commitc540308d631b6a8f92b4fc450a7e887b672710fb (patch)
tree759e15c24a95b12af6a26ddde92cb759e3cb3fe2 /talerbank
parent820685c6ea5b9e425f45c6af2c3a5e3d71586415 (diff)
downloadbank-c540308d631b6a8f92b4fc450a7e887b672710fb.tar.gz
bank-c540308d631b6a8f92b4fc450a7e887b672710fb.tar.bz2
bank-c540308d631b6a8f92b4fc450a7e887b672710fb.zip
Remove installation-time wire-transfer.
Diffstat (limited to 'talerbank')
-rw-r--r--talerbank/app/management/commands/provide_accounts.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/talerbank/app/management/commands/provide_accounts.py b/talerbank/app/management/commands/provide_accounts.py
index 901f996..3586a0b 100644
--- a/talerbank/app/management/commands/provide_accounts.py
+++ b/talerbank/app/management/commands/provide_accounts.py
@@ -48,14 +48,6 @@ def make_account(username):
is_public=True
).save()
- if "Survey" == username:
- bank = BankAccount.objects.get(account_no=1)
- survey = BankAccount.objects.get(account_no=8)
- wire_transfer(
- Amount(settings.TALER_CURRENCY, 10000000), bank, survey,
- "Benevolent donation for 'Survey'"
- )
-
except (OperationalError, ProgrammingError):
LOGGER.error(
"db does not exist, or the project"