1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-03 12:00:59 +00:00

Removed 'random' field from signing transaction, because of deterministic ECDSA signing

This commit is contained in:
slush 2013-09-01 03:42:01 +02:00
parent 3e39a4c267
commit bdfe3fd4ae

View File

@ -134,7 +134,6 @@ class BitkeyClient(object):
# Prepare and send initial message # Prepare and send initial message
tx = proto.SignTx() tx = proto.SignTx()
tx.random = self._get_local_entropy() # Provide additional entropy to the device
tx.inputs_count = len(inputs) tx.inputs_count = len(inputs)
tx.outputs_count = len(outputs) tx.outputs_count = len(outputs)
res = self.call(tx) res = self.call(tx)