funga

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

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

Add encrypt and password to symmetric key hash in postgres package

Diffstat:
Mtest/test_database.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/test_database.py b/test/test_database.py @@ -52,7 +52,7 @@ class TestDatabase(unittest.TestCase): def test_get_key(self): - pk = self.db.get(self.address_hex) + pk = self.db.get(self.address_hex, 'foo') logg.info('pk {}'.format(pk.hex()))