Skip to content
Snippets Groups Projects
Commit e3262e45 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

Fix depreated function warning

* Improve blockchain unittests
parent 68cad02f
No related branches found
No related tags found
No related merge requests found
......@@ -183,9 +183,7 @@ def sign_message(message, wif, hashfn=hashlib.sha256):
if not cnt % 20:
log.info("Still searching for a canonical signature. Tried %d times already!" % cnt)
order = ecdsa.SECP256k1.order
signer = private_key.signer(ec.ECDSA(hashes.SHA256()))
signer.update(message)
sigder = signer.finalize()
sigder = private_key.sign(message, ec.ECDSA(hashes.SHA256()))
r, s = decode_dss_signature(sigder)
signature = ecdsa.util.sigencode_string(r, s, order)
# Make sure signature is canonical!
......
......@@ -60,7 +60,7 @@ class Testcases(unittest.TestCase):
self.assertTrue(isinstance(num, int))
block = b.get_current_block()
self.assertTrue(isinstance(block, Block))
self.assertTrue((num - block.identifier) < 2)
self.assertTrue((num - block.identifier) < 3)
block_time = b.block_time(block.identifier)
self.assertEqual(block.time(), block_time)
block_timestamp = b.block_timestamp(block.identifier)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment