From 9d301f6ac893eab29177ebe5e02bb53084afb6fa Mon Sep 17 00:00:00 2001 From: Samuel M Smith Date: Tue, 9 Apr 2024 09:27:57 -0600 Subject: [PATCH] fixed typo in counting Counter Codex table --- src/keri/core/counting.py | 2 +- tests/core/test_counting.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/keri/core/counting.py b/src/keri/core/counting.py index 7419301b8..62ea757ca 100644 --- a/src/keri/core/counting.py +++ b/src/keri/core/counting.py @@ -115,7 +115,7 @@ class CounterCodex_2_0(MapCodex): FirstSeenReplayCouples: str = '-N' # First Seen Replay Couple(s), fnu+dts. BigFirstSeenReplayCouples: str = '-0N' # First Seen Replay Couple(s), fnu+dts. TransIdxSigGroups: str = '-O' # Trans Indexed Signature Group(s), pre+snu+dig+CtrControllerIdxSigs of qb64. - TransIdxSigGroups: str = '-0O' # Big Trans Indexed Signature Group(s), pre+snu+dig+CtrControllerIdxSigs of qb64. + BigTransIdxSigGroups: str = '-0O' # Big Trans Indexed Signature Group(s), pre+snu+dig+CtrControllerIdxSigs of qb64. TransLastIdxSigGroups: str = '-P' # Trans Last Est Evt Indexed Signature Group(s), pre+CtrControllerIdxSigs of qb64. BigTransLastIdxSigGroups: str = '-0P' # Big Trans Last Est Evt Indexed Signature Group(s), pre+CtrControllerIdxSigs of qb64. SealSourceCouples: str = '-Q' # Seal Source Couple(s), snu+dig of source sealing or sealed event. diff --git a/tests/core/test_counting.py b/tests/core/test_counting.py index 5556e9ef6..da1c21aeb 100644 --- a/tests/core/test_counting.py +++ b/tests/core/test_counting.py @@ -110,7 +110,8 @@ def test_codexes_tags(): 'BigTransReceiptQuadruples': '-0M', 'FirstSeenReplayCouples': '-N', 'BigFirstSeenReplayCouples': '-0N', - 'TransIdxSigGroups': '-0O', + 'TransIdxSigGroups': '-O', + 'BigTransIdxSigGroups': '-0O', 'TransLastIdxSigGroups': '-P', 'BigTransLastIdxSigGroups': '-0P', 'SealSourceCouples': '-Q', @@ -186,6 +187,7 @@ def test_codexes_tags(): 'FirstSeenReplayCouples': 'FirstSeenReplayCouples', 'BigFirstSeenReplayCouples': 'BigFirstSeenReplayCouples', 'TransIdxSigGroups': 'TransIdxSigGroups', + 'BigTransIdxSigGroups': 'BigTransIdxSigGroups', 'TransLastIdxSigGroups': 'TransLastIdxSigGroups', 'BigTransLastIdxSigGroups': 'BigTransLastIdxSigGroups', 'SealSourceCouples': 'SealSourceCouples', @@ -242,6 +244,7 @@ def test_codexes_tags(): 'FirstSeenReplayCouples': 'FirstSeenReplayCouples', 'BigFirstSeenReplayCouples': 'BigFirstSeenReplayCouples', 'TransIdxSigGroups': 'TransIdxSigGroups', + 'BigTransIdxSigGroups': 'BigTransIdxSigGroups', 'TransLastIdxSigGroups': 'TransLastIdxSigGroups', 'BigTransLastIdxSigGroups': 'BigTransLastIdxSigGroups', 'SealSourceCouples': 'SealSourceCouples',