Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.6.0] - 2024-05-01

### Changed

- Add `dnsseed.mainnet.bitcoin.achow101.com` as DNS seed

## [3.5.0] - 2024-05-06

### Changed
Expand Down
1 change: 1 addition & 0 deletions module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ in
description = "p2p-crawler";
# service should only run when scheduled, not when system is booted so no
# wantedBy = [ "multi-user.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" ];

serviceConfig = {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "p2p-crawler"
version = "3.5.0"
version = "3.6.0"
description = "Crawler for Bitcoin's P2P network"
authors = ["virtu <virtu@cryptic.to>"]
license = "AGPLv3"
Expand Down
1 change: 1 addition & 0 deletions src/p2p_crawler/dnsseeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"seed.bitcoin.sprovoost.nl",
"dnsseed.emzy.de",
"seed.bitcoin.wiz.biz",
"dnsseed.mainnet.bitcoin.achow101.com",
]


Expand Down