mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-27 07:40:59 +00:00
nem: fix unit tests
This commit is contained in:
parent
df7a8977ea
commit
b13dba115a
@ -1,6 +1,8 @@
|
||||
from common import *
|
||||
from apps.nem.transfer import *
|
||||
from trezor.messages.NEMMosaic import NEMMosaic
|
||||
from apps.nem.mosaic.helpers import get_mosaic_definition
|
||||
from apps.nem.transfer import *
|
||||
from apps.nem.transfer.serialize import *
|
||||
|
||||
|
||||
class TestNemMosaic(unittest.TestCase):
|
||||
|
@ -1,6 +1,9 @@
|
||||
from common import *
|
||||
|
||||
from apps.nem.helpers import *
|
||||
from apps.nem.mosaic import *
|
||||
from apps.nem.mosaic.serialize import *
|
||||
|
||||
from trezor.crypto import hashlib
|
||||
from trezor.messages.NEMSignTx import NEMSignTx
|
||||
from trezor.messages.NEMMosaicCreation import NEMMosaicCreation
|
||||
|
@ -1,6 +1,9 @@
|
||||
from common import *
|
||||
|
||||
from apps.nem.helpers import *
|
||||
from apps.nem.mosaic import *
|
||||
from apps.nem.mosaic.serialize import *
|
||||
|
||||
from trezor.crypto import hashlib
|
||||
from trezor.messages.NEMSignTx import NEMSignTx
|
||||
from trezor.messages.NEMMosaicSupplyChange import NEMMosaicSupplyChange
|
||||
|
@ -1,6 +1,9 @@
|
||||
from common import *
|
||||
|
||||
from apps.nem.helpers import *
|
||||
from apps.nem.multisig import *
|
||||
from apps.nem.multisig.serialize import *
|
||||
|
||||
from trezor.crypto import hashlib
|
||||
from trezor.messages.NEMSignTx import NEMSignTx
|
||||
from trezor.messages.NEMAggregateModification import NEMAggregateModification
|
||||
|
@ -1,7 +1,11 @@
|
||||
from common import *
|
||||
|
||||
from apps.nem.helpers import *
|
||||
from apps.nem.multisig import *
|
||||
from apps.nem.multisig.serialize import *
|
||||
from apps.nem.namespace import *
|
||||
from apps.nem.namespace.serialize import *
|
||||
|
||||
from trezor.messages.NEMSignTx import NEMSignTx
|
||||
from trezor.messages.NEMAggregateModification import NEMAggregateModification
|
||||
from trezor.messages.NEMProvisionNamespace import NEMProvisionNamespace
|
||||
|
@ -1,6 +1,9 @@
|
||||
from common import *
|
||||
|
||||
from apps.nem.helpers import *
|
||||
from apps.nem.namespace import *
|
||||
from apps.nem.namespace.serialize import *
|
||||
|
||||
from trezor.crypto import hashlib
|
||||
from trezor.messages.NEMProvisionNamespace import NEMProvisionNamespace
|
||||
from trezor.messages.NEMSignTx import NEMSignTx
|
||||
|
@ -1,7 +1,10 @@
|
||||
from common import *
|
||||
|
||||
from apps.nem.transfer import *
|
||||
from apps.nem.helpers import *
|
||||
from apps.nem.mosaic import *
|
||||
from apps.nem.transfer import *
|
||||
from apps.nem.transfer.serialize import *
|
||||
|
||||
from trezor.crypto import hashlib
|
||||
from trezor.messages.NEMTransfer import NEMTransfer
|
||||
from trezor.messages.NEMSignTx import NEMSignTx
|
||||
|
Loading…
Reference in New Issue
Block a user