mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-18 20:38:10 +00:00
src/trezor/wire: allow passing MessageType classes to register()
This commit is contained in:
parent
2731742d34
commit
60bec0b4d1
@ -13,6 +13,8 @@ workflow_handlers = {}
|
||||
|
||||
def register(mtype, handler, *args):
|
||||
'''Register `handler` to get scheduled after `mtype` message is received.'''
|
||||
if isinstance(mtype, type) and issubclass(mtype, protobuf.MessageType):
|
||||
mtype = mtype.MESSAGE_WIRE_TYPE
|
||||
if mtype in workflow_handlers:
|
||||
raise KeyError
|
||||
workflow_handlers[mtype] = (handler, args)
|
||||
|
Loading…
Reference in New Issue
Block a user