From 8541c4265bd299bd08e7e02eede980838ef62f97 Mon Sep 17 00:00:00 2001 From: andrew Date: Thu, 24 Jan 2019 15:56:05 +0100 Subject: [PATCH] Fix comment in _next_counter(). --- src/apps/common/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/common/storage.py b/src/apps/common/storage.py index 91737c80cb..4c16f69780 100644 --- a/src/apps/common/storage.py +++ b/src/apps/common/storage.py @@ -63,7 +63,7 @@ def _next_counter(app: int, key: int, public: bool = False) -> int: # With each increment the tail is shifted to the right by one bit. Thus after # three increments the stored value is 000000001FFFFFFFFFFFFFFF. Once all the # bits in the tail are set to zero, the next counter value is stored as - # 00000021FFFFFFFFFFFFFFFF. + # 00000041FFFFFFFFFFFFFFFF. value = config.get(app, key, public) if value is None: