1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 23:08:14 +00:00

device_tests: fix remaining use of btc.sign_tx

This commit is contained in:
matejcik 2018-11-05 21:31:07 +01:00
parent 99278f7d08
commit 81c55c1c5f

View File

@ -18,6 +18,7 @@ import pytest
from trezorlib import btc, debuglink, device, messages as proto, misc
from ..support.tx_cache import tx_cache
from .common import TrezorTest
TXHASH_d5f65e = bytes.fromhex(
@ -273,7 +274,9 @@ class TestProtectionLevels(TrezorTest):
proto.TxRequest(request_type=proto.RequestType.TXFINISHED),
]
)
btc.sign_tx(self.client, "Bitcoin", [inp1], [out1])
btc.sign_tx(
self.client, "Bitcoin", [inp1], [out1], prev_txes=tx_cache("Bitcoin")
)
# def test_firmware_erase(self):
# pass