fix some pubkeys that were strings still.

This commit is contained in:
fiatjaf
2025-04-17 00:54:50 -03:00
parent 0130725321
commit 1c56906506
4 changed files with 7 additions and 11 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ func (lh *LMDBHints) PrintScores() {
}
defer cursor.Close()
var lastPubkey string
var lastPubkey nostr.PubKey
i := 0
for k, v, err := cursor.Get(nil, nil, lmdb.First); err == nil; k, v, err = cursor.Get(nil, nil, lmdb.Next) {