From 9da715e0253aa12af94920267254e7e20f47464c Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Tue, 11 Aug 2020 15:11:13 +0200 Subject: [PATCH] python: Fix UnboundLocalError in trezorctl btc get-address. --- python/CHANGELOG.md | 8 ++++++++ python/src/trezorlib/__init__.py | 2 +- python/src/trezorlib/cli/btc.py | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index e309ce05f2..4ac0cbe65b 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). _At the moment, the project does **not** adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). That is expected to change with version 1.0._ +## [0.12.2] - unreleased +[0.12.2]: https://github.com/trezor/trezor-firmware/compare/python/v0.12.1...master + +### Fixed + +- fix `UnboundLocalError` in `trezorctl btc get-address` [#1179] + ## [0.12.1] - 2020-08-05 [0.12.1]: https://github.com/trezor/trezor-firmware/compare/python/v0.12.0...python/v0.12.1 @@ -452,3 +459,4 @@ _At the moment, the project does **not** adhere to [Semantic Versioning](https:/ [#948]: https://github.com/trezor/trezor-firmware/issues/948 [#1052]: https://github.com/trezor/trezor-firmware/issues/1052 [#1126]: https://github.com/trezor/trezor-firmware/issues/1126 +[#1179]: https://github.com/trezor/trezor-firmware/issues/1179 diff --git a/python/src/trezorlib/__init__.py b/python/src/trezorlib/__init__.py index 3e6db2a6e2..cb97c306c0 100644 --- a/python/src/trezorlib/__init__.py +++ b/python/src/trezorlib/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.1" +__version__ = "0.12.2" # fmt: off MINIMUM_FIRMWARE_VERSION = { diff --git a/python/src/trezorlib/cli/btc.py b/python/src/trezorlib/cli/btc.py index b8f41e0919..439ee93aed 100644 --- a/python/src/trezorlib/cli/btc.py +++ b/python/src/trezorlib/cli/btc.py @@ -134,6 +134,9 @@ def get_address( ) if script_type == messages.InputScriptType.SPENDADDRESS: script_type = messages.InputScriptType.SPENDMULTISIG + else: + multisig = None + return btc.get_address( client, coin,