diff --git a/CHANGELOG.md b/CHANGELOG.md index 84986050a6..ec17249b46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/trezorctl b/trezorctl index c7615d13e2..5dab13cb94 100755 --- a/trezorctl +++ b/trezorctl @@ -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 #