1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-16 03:18:09 +00:00

src/apps/common: fix typo in set_u2f_counter

This commit is contained in:
Pavol Rusnak 2018-02-28 18:58:42 +01:00
parent c0a0630cba
commit 4f98f02ff9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -108,7 +108,7 @@ def next_u2f_counter() -> int:
def set_u2f_counter(cntr: int):
config.set(_APP, _FLAGS, cntr.to_bytes(4, 'big'))
config.set(_APP, _U2F_COUNTER, cntr.to_bytes(4, 'big'))
def wipe():