1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-26 16:18:22 +00:00

tests: fix coins test (there are few collissions in address_types, but for less significant coins)

This commit is contained in:
Pavol Rusnak 2018-06-22 14:43:22 +02:00
parent 3b0808035c
commit 5c62180011
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -8,10 +8,8 @@ class TestCoins(unittest.TestCase):
def test_coins(self): def test_coins(self):
ref = [ ref = [
('BTC', 'Bitcoin', 0), ('BTC', 'Bitcoin', 0),
('TEST', 'Testnet', 111),
('NMC', 'Namecoin', 52), ('NMC', 'Namecoin', 52),
('LTC', 'Litecoin', 48), ('LTC', 'Litecoin', 48),
('DOGE', 'Dogecoin', 30),
('DASH', 'Dash', 76), ('DASH', 'Dash', 76),
('ZEC', 'Zcash', 7352), ('ZEC', 'Zcash', 7352),
('TAZ', 'Zcash Testnet', 7461), ('TAZ', 'Zcash Testnet', 7461),