Skip to content

Commit 53f67f7

Browse files
authored
Merge pull request #255 from cculianu/wip_t4btc
Add PeerMgr support for BTC testnet4
2 parents be56dd2 + 322ae5c commit 53f67f7

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

contrib/rpm/fulcrum.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: {{{ git_repo_name name="fulcrum" }}}
2-
Version: 1.11.0
2+
Version: 1.11.1
33
Release: {{{ git_repo_version }}}%{?dist}
44
Summary: A fast & nimble SPV server for Bitcoin Cash & Bitcoin BTC
55

doc/unix-man-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
% FULCRUM(1) Version 1.11.0 | Fulcrum Manual
1+
% FULCRUM(1) Version 1.11.1 | Fulcrum Manual
22
% Fulcrum is written by Calin Culianu (cculianu)
3-
% May 23, 2024
3+
% August 08, 2024
44

55
# NAME
66

resources.qrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<file>resources/bch/servers_chipnet.json</file>
88
<file>resources/btc/servers.json</file>
99
<file>resources/btc/servers_testnet.json</file>
10+
<file>resources/btc/servers_testnet4.json</file>
1011
<file>resources/ltc/servers.json</file>
1112
<file>resources/ltc/servers_testnet.json</file>
1213
</qresource>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"blackie.c3-soft.com": {
3+
"pruning": "-",
4+
"s": "57010",
5+
"t": "57009",
6+
"version": "1.4"
7+
}
8+
}

src/BTC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ namespace BTC
171171
{"test4", TestNet4}, // BCHN, BU
172172
{"scale", ScaleNet}, // BCHN, BU
173173
{"testnet3", TestNet}, // bchd
174-
{"testnet4", TestNet4}, // possible future bchd
174+
{"testnet4", TestNet4}, // Core, possible future bchd
175175
{"regtest", RegTestNet}, // BCHN, BU, ABC, bchd, Core, LitecoinCore
176176
{"signet", TestNet}, // Core only
177177
{"chip", ChipNet}, // BCH only; BCHN

src/Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ struct InternalError : Exception { using Exception::Exception; ~InternalError()
3939
struct BadArgs : Exception { using Exception::Exception; ~BadArgs() override; };
4040

4141
#define APPNAME "Fulcrum"
42-
#define VERSION "1.11.0"
42+
#define VERSION "1.11.1"
4343
#ifdef QT_DEBUG
4444
inline constexpr bool isReleaseBuild() { return false; }
4545
#else

src/PeerMgr.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void PeerMgr::startup()
9696
else if (net == BTC::Net::TestNet)
9797
parseServersDotJson(pathPrefix + "servers_testnet.json");
9898
else if (net == BTC::Net::TestNet4)
99-
parseServersDotJson(pathPrefix + "servers_testnet4.json"); // BCH only -- will implicitly throw if somehow the coin is BTC (should never happen)
99+
parseServersDotJson(pathPrefix + "servers_testnet4.json"); // BCH & BTC only -- will implicitly throw if somehow the coin is LTC (should never happen)
100100
else if (net == BTC::Net::ScaleNet)
101101
parseServersDotJson(pathPrefix + "servers_scalenet.json"); // BCH only -- will implicitly throw if somehow the coin is BTC (should never happen)
102102
else if (net == BTC::Net::ChipNet)

0 commit comments

Comments
 (0)