funga

Signer and keystore daemon and library for cryptocurrency software development
Log | Files | Refs | README | LICENSE

commit aa1d39ea402feb497c1cde738893ae38a2e42b14
parent f91a1acc92f30542a217adb54ba2c49fc4147621
Author: nolash <dev@holbrook.no>
Date:   Wed,  5 Aug 2020 19:48:29 +0200

Add encrypt and password to symmetric key hash in postgres package

Diffstat:
Mtest/test_database.py | 10----------
1 file changed, 0 insertions(+), 10 deletions(-)

diff --git a/test/test_database.py b/test/test_database.py @@ -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)