mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-03 20:11:00 +00:00
11 lines
220 B
Python
11 lines
220 B
Python
import unittest
|
|
import common
|
|
|
|
class TestSignTx(common.BitkeyTest):
|
|
'''
|
|
def test_signtx(self):
|
|
print self.bitkey.sign_tx([], [])
|
|
'''
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |