This commit is contained in:
ThomasV 2015-04-05 18:58:32 +02:00
parent be5731d463
commit 42ed67e8c7
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ def db_thread():
# add a new request to the table.
addr, amount, confs, minutes = params
sql = "INSERT INTO electrum_payments (address, amount, confirmations, received_at, expires_at, paid, processed)"\
+ " VALUES ('%s', %f, %d, datetime('now'), datetime('now', '+%d Minutes'), NULL, NULL);"%(addr, amount, confs, minutes)
+ " VALUES ('%s', %.8f, %d, datetime('now'), datetime('now', '+%d Minutes'), NULL, NULL);"%(addr, amount, confs, minutes)
print sql
cur.execute(sql)