Add encrypt and password to symmetric key hash in postgres package

This commit is contained in:
nolash 2020-08-05 19:48:29 +02:00
parent f91a1acc92
commit aa1d39ea40
Signed by: lash
GPG Key ID: 93EC1C676274C889
1 changed files with 0 additions and 10 deletions

View File

@ -38,18 +38,8 @@ class TestDatabase(unittest.TestCase):
wallet_address_hex CHAR(40) NOT NULL
);
""")
self.db.conn.commit()
self.db.cur.execute("CREATE UNIQUE INDEX ethereum_address_idx ON ethereum ( wallet_address_hex );")
# self.db.cur.execute(
# sql.SQL('INSERT INTO ethereum (key_ciphertext, wallet_address_hex) VALUES (%s, %s)'),
# [
# pk_ciphertext.decode('utf-8'),
# self.addr,
# ],
# )
self.db.conn.commit()
self.db.new(self.address_hex)