Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,8 +859,8 @@ def search():
# The above loads 260 bytes (5 bits per char * 52 chars), but we only want 256:
v >>= 4
val = "{:64x}".format(v)
if val and len(val) <= 68 and val.endswith(".bdx"):
val = val.rstrip('.bdx')
if val.endswith(".bdx"):
val = val[:-4]

# BNS can be of length 64 however with txids, and sn pubkey's being of length 64
# I have removed it from the possible searches.
Expand Down