gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-bank] branch master updated: enforcing minimum amoun


From: gnunet
Subject: [GNUnet-SVN] [taler-bank] branch master updated: enforcing minimum amount to transfer
Date: Thu, 16 Nov 2017 13:57:01 +0100

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

marcello pushed a commit to branch master
in repository bank.

The following commit(s) were added to refs/heads/master by this push:
     new 840661b  enforcing minimum amount to transfer
840661b is described below

commit 840661b73eb67aef677adb3917af66d42bd1de17
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Nov 16 13:56:37 2017 +0100

    enforcing minimum amount to transfer
---
 talerbank/app/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/talerbank/app/views.py b/talerbank/app/views.py
index 4567aa1..3001e32 100644
--- a/talerbank/app/views.py
+++ b/talerbank/app/views.py
@@ -92,7 +92,7 @@ def get_session_flag(request, name):
 
 class WTForm(forms.Form):
     '''Form used to wire transfer funds internally in the bank.'''
-    amount = forms.FloatField(label=settings.TALER_CURRENCY)
+    amount = forms.FloatField(label=settings.TALER_CURRENCY, min_value=0.1)
     counterpart = forms.IntegerField()
     subject = forms.CharField()
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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