Skip to content

Commit

Permalink
Tweak Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkrellenstein committed Dec 18, 2024
1 parent 7063624 commit bd32bb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion counterparty-core/counterpartycore/lib/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def check_signature(filepath, sig_url):
signature_verified = True
break
os.remove(sig_filepath)
print(f"Verified signature in {time.time() - start_time:.2f}s")
print(f"Verified signature for {filepath} in {time.time() - start_time:.2f}s")

if not signature_verified:
print(f"{filepath} was not signed by any trusted keys, deleting...")
Expand Down
2 changes: 1 addition & 1 deletion release-notes/release-notes-v10.9.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
- Refactor raw mempool parsing; Don't block following
- Add a timeout to parse mempool transaction from ZMQ
- Add cache for unsupported transactions when parsing raw
- Refactor bootstrap: clean code, use `zstd` instead `gzip`, decompress and verify signature in parallel
- Refactor and optimize bootstrap process, using `zstd` instead of `gzip`

## API

Expand Down

0 comments on commit bd32bb5

Please sign in to comment.