Skip to content

Commit

Permalink
Merge pull request WebOfTrust#744 from SmithSamuelM/main
Browse files Browse the repository at this point in the history
fixed typo in counting Counter Codex table
  • Loading branch information
SmithSamuelM authored Apr 9, 2024
2 parents 24cda6d + 9d301f6 commit 38ab915
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/keri/core/counting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 4 additions & 1 deletion tests/core/test_counting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -186,6 +187,7 @@ def test_codexes_tags():
'FirstSeenReplayCouples': 'FirstSeenReplayCouples',
'BigFirstSeenReplayCouples': 'BigFirstSeenReplayCouples',
'TransIdxSigGroups': 'TransIdxSigGroups',
'BigTransIdxSigGroups': 'BigTransIdxSigGroups',
'TransLastIdxSigGroups': 'TransLastIdxSigGroups',
'BigTransLastIdxSigGroups': 'BigTransLastIdxSigGroups',
'SealSourceCouples': 'SealSourceCouples',
Expand Down Expand Up @@ -242,6 +244,7 @@ def test_codexes_tags():
'FirstSeenReplayCouples': 'FirstSeenReplayCouples',
'BigFirstSeenReplayCouples': 'BigFirstSeenReplayCouples',
'TransIdxSigGroups': 'TransIdxSigGroups',
'BigTransIdxSigGroups': 'BigTransIdxSigGroups',
'TransLastIdxSigGroups': 'TransLastIdxSigGroups',
'BigTransLastIdxSigGroups': 'BigTransLastIdxSigGroups',
'SealSourceCouples': 'SealSourceCouples',
Expand Down

0 comments on commit 38ab915

Please sign in to comment.