PyBitmessage/src/helper_sent.py

9 lines
165 B
Python
Raw Normal View History

2019-10-07 13:58:12 +00:00
"""
Insert operation into sent table
"""
2013-08-29 11:27:09 +00:00
from helper_sql import *
def insert(t):
2015-03-09 06:35:32 +00:00
sqlExecute('''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''', *t)