1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-16 19:38:09 +00:00

trezorctl: drop list_coins command (closes #277)

This commit is contained in:
matejcik 2018-06-18 18:40:06 +02:00
parent db9bfab77d
commit cd94fb5ff9
2 changed files with 5 additions and 6 deletions

View File

@ -12,6 +12,10 @@ _At the moment, the project does __not__ adhere to [Semantic Versioning](http://
### Changed
- trezorctl: `stellar_get_public` now outputs the key hex-encoded
### Removed
- trezorctl: `list_coins` is removed because we no longer parse the relevant protobuf field
(and newer Trezor firmwares don't send it) [#277]
### Fixed
- test support module was not included in the release, so code relying on the deprecated `ckd_public` module would fail [#280]
@ -116,4 +120,5 @@ _At the moment, the project does __not__ adhere to [Semantic Versioning](http://
[#268]: https://github.com/trezor/python-trezor/issues/268
[#269]: https://github.com/trezor/python-trezor/issues/269
[#274]: https://github.com/trezor/python-trezor/issues/274
[#277]: https://github.com/trezor/python-trezor/issues/277
[#280]: https://github.com/trezor/python-trezor/issues/280

View File

@ -172,12 +172,6 @@ def get_features(connect):
return connect().features
@cli.command(help='List all supported coin types by the device.')
@click.pass_obj
def list_coins(connect):
return [coin.coin_name for coin in connect().features.coins]
#
# Device management functions
#