From def164fbd4be5e65f9f311a2db8d3f599026f231 Mon Sep 17 00:00:00 2001 From: slush0 Date: Sun, 26 Jun 2016 22:03:03 +0200 Subject: [PATCH] Fixed typo in set_mnemonic --- trezorlib/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index 7d5eafb..a06fdc5 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -283,7 +283,7 @@ class DebugLinkMixin(object): self.passphrase = normalize_nfc(passphrase) def set_mnemonic(self, mnemonic): - self.mnemonic = normalize_nfc(passphrase) + self.mnemonic = normalize_nfc(mnemonic) def call_raw(self, msg):