Skip to content

Commit bc39642

Browse files
authored
Merge pull request #1390 from KeaxD/fix-epath-essrs
fix subdbs subkeys
2 parents 9ca0064 + 6146c9d commit bc39642

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/keri/db/basing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -561,12 +561,12 @@ class Baser(LMDBer):
561561
562562
.epath is named subDB instance of IoSetSuber for exchange message
563563
pathed attachments.
564-
subkey '.epath'
564+
subkey 'epath.'
565565
Multiple values per key.
566566
567567
.essrs is named subDB instance of CesrIoSetSuber (klas=Texter) for
568568
exchange message event source records.
569-
subkey '.essrs'
569+
subkey 'essrs.'
570570
Multiple values per key.
571571
572572
.chas is named subDB instance of CesrIoSetSuber (klas=Diger) for
@@ -1075,9 +1075,9 @@ def reopen(self, **kwa):
10751075

10761076
# exchange pathed attachments
10771077
# TODO: clean
1078-
self.epath = subing.IoSetSuber(db=self, subkey=".epath")
1078+
self.epath = subing.IoSetSuber(db=self, subkey="epath.")
10791079

1080-
self.essrs = subing.CesrIoSetSuber(db=self, subkey=".essrs", klas=coring.Texter)
1080+
self.essrs = subing.CesrIoSetSuber(db=self, subkey="essrs.", klas=coring.Texter)
10811081

10821082
# accepted signed 12-word challenge response exn messages keys by prefix of signer
10831083
# TODO: clean

0 commit comments

Comments
 (0)