From ca6ab18ae5726b2d27ff300cb3fe455c9633aad4 Mon Sep 17 00:00:00 2001 From: slush0 Date: Sun, 12 Jan 2014 16:17:22 +0100 Subject: [PATCH] Fixes DebugLinkGetState --- trezorlib/debuglink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/debuglink.py b/trezorlib/debuglink.py index f60a60635..dc1949b71 100644 --- a/trezorlib/debuglink.py +++ b/trezorlib/debuglink.py @@ -15,7 +15,7 @@ class DebugLink(object): self.button_func = button_func def read_pin(self): - self.transport.write(proto.DebugLinkGetState(pin=True, matrix=True)) + self.transport.write(proto.DebugLinkGetState()) obj = self.transport.read_blocking() print "Read PIN:", obj.pin print "Read matrix:", obj.matrix