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
1 changed files with 1 additions and 1 deletions

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():