|
@@ -2,8 +2,8 @@ from lib.db_log import DBLog
|
|
|
from util import random_chars
|
|
|
|
|
|
CURRENCY_NAME = "₭ollar"
|
|
|
-MRO_INTERVAL = 3 * 3600 # TODO somewhere expose this to the client, maybe in a tender calendar
|
|
|
-MRO_RUNNING_TIME = 6 * 3600 # TODO somewhere expose this to the client, maybe in a tender calendar
|
|
|
+MRO_INTERVAL = 7 * 24 * 3600
|
|
|
+MRO_RUNNING_TIME = 7 * 24 * 3600
|
|
|
CURRENCY_SYMBOL = "₭"
|
|
|
MINIMUM_ORDER_AMOUNT = 1
|
|
|
DEFAULT_ORDER_EXPIRY = 43200
|
|
@@ -18,4 +18,4 @@ BANK_NAME = 'bank'
|
|
|
|
|
|
|
|
|
def random_ownable_name():
|
|
|
- return random_chars(6)
|
|
|
+ return random_chars(6)
|