From bdfe3fd4ae36c0d0b638838a75e33b592ca3eefc Mon Sep 17 00:00:00 2001 From: slush Date: Sun, 1 Sep 2013 03:42:01 +0200 Subject: [PATCH] Removed 'random' field from signing transaction, because of deterministic ECDSA signing --- bitkeylib/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bitkeylib/client.py b/bitkeylib/client.py index a119af9..9463468 100644 --- a/bitkeylib/client.py +++ b/bitkeylib/client.py @@ -134,7 +134,6 @@ class BitkeyClient(object): # Prepare and send initial message tx = proto.SignTx() - tx.random = self._get_local_entropy() # Provide additional entropy to the device tx.inputs_count = len(inputs) tx.outputs_count = len(outputs) res = self.call(tx)