mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-17 03:48:09 +00:00
trezorctl: drop list_coins command (closes #277)
This commit is contained in:
parent
db9bfab77d
commit
cd94fb5ff9
@ -12,6 +12,10 @@ _At the moment, the project does __not__ adhere to [Semantic Versioning](http://
|
|||||||
### Changed
|
### Changed
|
||||||
- trezorctl: `stellar_get_public` now outputs the key hex-encoded
|
- 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
|
### Fixed
|
||||||
- test support module was not included in the release, so code relying on the deprecated `ckd_public` module would fail [#280]
|
- 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
|
[#268]: https://github.com/trezor/python-trezor/issues/268
|
||||||
[#269]: https://github.com/trezor/python-trezor/issues/269
|
[#269]: https://github.com/trezor/python-trezor/issues/269
|
||||||
[#274]: https://github.com/trezor/python-trezor/issues/274
|
[#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
|
[#280]: https://github.com/trezor/python-trezor/issues/280
|
||||||
|
@ -172,12 +172,6 @@ def get_features(connect):
|
|||||||
return connect().features
|
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
|
# Device management functions
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user