trezor-core/mocks/trezor/config.py

14 lines
355 B
Python
Raw Normal View History

2016-09-27 07:48:21 -07:00
# ../extmod/modtrezorconfig/modtrezorconfig.c
def get(app: int, key: int) -> bytes:
'''
Gets a value of given key for given app (or None if not set).
'''
# ../extmod/modtrezorconfig/modtrezorconfig.c
2016-10-18 05:32:37 -07:00
def set(app: int, key: int, value: bytes) -> None:
2016-09-27 07:48:21 -07:00
'''
Sets a value of given key for given app.
Returns True on success.
'''