Skip to content

Commit d875c76

Browse files
authored
Merge branch 'master' into bitcoinsync31July2023
2 parents e36f52f + 217e921 commit d875c76

File tree

145 files changed

+1346
-1408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1346
-1408
lines changed

.github/PULL_REQUEST_TEMPLATE.md

-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ what is the goal of the pull request
44
Pull requests without a rationale and clear improvement may be closed
55
immediately.
66

7-
GUI-related pull requests should be opened against
8-
https://github.com/BGL-core/gui
9-
first. See CONTRIBUTING.md
10-
-->
11-
127
### Notes
138
implementation details, hints for reviewers
149

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ Rebased-From: <commit hash of the original commit>
432432
```
433433

434434
Have a look at [an example backport PR](
435-
https://github.com/BGL/BGL/pull/16189).
435+
https://github.com/bitcoin/bitcoin/pull/16189).
436436

437437
Also see the [backport.py script](
438438
https://github.com/BGL-core/BGL-maintainer-tools#backport).

README.md

+25-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,31 @@ Features:
6464
* Optional module for ECDH key exchange.
6565
* Optional module for Schnorr signatures according to [BIP-340](https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki).
6666

67-
Implementation details
68-
----------------------
67+
<b>Bitgesell is a fork of Bitcoin with the following changes:</b> <br>
68+
* Block Reward [Burn rate is 90% of tx fees]
69+
```sh
70+
nFees*0.1 + GetBlockSubsidy()
71+
```
72+
* Block Weight [10 times smaller than Bitcoin]
73+
```sh
74+
<= 400,000
75+
```
76+
* 100% Segwit
77+
```sh
78+
Eliminates problems with legacy type of transactions
79+
```
80+
* Halving Interval [Halving cycle of bitgetsell is 1yr while that of BGL is 4yr]
81+
```sh
82+
210000 blocks/4
83+
```
84+
* Block Subsidy [Max coins = 21,000,000] <br>
85+
`210000 blocks/4` <br> <hr>
86+
`Hashing algorithm for blocks is Keccak (sha-3).` <br> <hr>
87+
`The master branch is regularly built (see` [doc/build-*.md](https://github.com/BitgesellOfficial/bitgesell/tree/master/doc) `for instructions) and tested, but is not guaranteed to be completely stable.` <br> <hr>
88+
[tags](https://github.com/BitgesellOfficial/bitgesell/tags) `are created regularly to indicate new official, stable release versions of BGL Core.` <br>
89+
90+
91+
### Built With
6992

7093
* General
7194
* No runtime heap allocation.

build_msvc/BGL_config.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
#define BGL_BGL_CONFIG_H
77

88
/* Version Build */
9-
#define CLIENT_VERSION_BUILD 6
9+
#define CLIENT_VERSION_BUILD 0
1010

1111
/* Version is release */
1212
#define CLIENT_VERSION_IS_RELEASE true
1313

1414
/* Major version */
15-
#define CLIENT_VERSION_MAJOR 22
15+
#define CLIENT_VERSION_MAJOR 1
1616

1717
/* Minor version */
18-
#define CLIENT_VERSION_MINOR 1
18+
#define CLIENT_VERSION_MINOR 8
1919

2020
/* Copyright holder(s) before %s replacement */
2121
#define COPYRIGHT_HOLDERS "The %s developers"
@@ -27,7 +27,7 @@
2727
#define COPYRIGHT_HOLDERS_SUBSTITUTION "Bitcoin Core"
2828

2929
/* Copyright year */
30-
#define COPYRIGHT_YEAR 2021
30+
#define COPYRIGHT_YEAR 2022
3131

3232
/* Define to 1 to enable wallet functions */
3333
#define ENABLE_WALLET 1
@@ -183,10 +183,10 @@
183183
#define PACKAGE_STRING "Bitgesell Core 22.99.0"
184184

185185
/* Define to the home page for this package. */
186-
#define PACKAGE_URL "https://github.com/BitgesellOfficial/bitgesell/releases/"
186+
#define PACKAGE_URL "https://bitgesell.ca/"
187187

188188
/* Define to the version of this package. */
189-
#define PACKAGE_VERSION "22.99.0"
189+
#define PACKAGE_VERSION "0.1.8"
190190

191191
/* Define this symbol if the minimal qt platform exists */
192192
#define QT_QPA_PLATFORM_MINIMAL 1

build_msvc/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Introduction
55
---------------------
66
Visual Studio 2022 is minimum required to build BGL Core.
77

8-
Solution and project files to build with `msbuild` or Visual Studio can be found in the `build_msvc` directory.
8+
Building with Visual Studio is an alternative to the Linux based [cross-compiler build](https://github.com/BitgesellOfficial/bitgesell/blob/master/doc/build-windows.md).
99

1010
To build BGL Core from the command-line, it is sufficient to only install the [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/) component.
1111

build_msvc/libBGL_qt/libBGL_qt.vcxproj

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
<ClCompile Include="..\..\src\qt\overviewpage.cpp" />
3636
<ClCompile Include="..\..\src\qt\paymentserver.cpp" />
3737
<ClCompile Include="..\..\src\qt\peertablemodel.cpp" />
38+
<ClCompile Include="..\..\src\qt\peertablesortproxy.cpp" />
3839
<ClCompile Include="..\..\src\qt\platformstyle.cpp" />
3940
<ClCompile Include="..\..\src\qt\psbtoperationsdialog.cpp" />
4041
<ClCompile Include="..\..\src\qt\qrimagewidget.cpp" />
@@ -90,6 +91,7 @@
9091
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_overviewpage.cpp" />
9192
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_paymentserver.cpp" />
9293
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_peertablemodel.cpp" />
94+
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_peertablesortproxy.cpp" />
9395
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_platformstyle.cpp" />
9496
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_psbtoperationsdialog.cpp" />
9597
<ClCompile Include="$(GeneratedFilesOutDir)\moc\moc_qrimagewidget.cpp" />

configure.ac

+6-11
Original file line numberDiff line numberDiff line change
@@ -331,12 +331,7 @@ AC_ARG_ENABLE([werror],
331331
AC_ARG_ENABLE([external-signer],
332332
[AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is auto, requires Boost::Process)])],
333333
[use_external_signer=$enableval],
334-
[use_external_signer=auto])
335-
336-
AC_ARG_ENABLE([lto],
337-
[AS_HELP_STRING([--enable-lto],[build using LTO (default is no)])],
338-
[enable_lto=$enableval],
339-
[enable_lto=no])
334+
[use_external_signer=yes])
340335

341336
AC_LANG_PUSH([C++])
342337

@@ -461,11 +456,11 @@ if test "$CXXFLAGS_overridden" = "no"; then
461456
dnl Some compilers (gcc) ignore unknown -Wno-* options, but warn about all
462457
dnl unknown options if any other warning is produced. Test the -Wfoo case, and
463458
dnl set the -Wno-foo case if it works.
464-
AX_CHECK_COMPILE_FLAG([-Wunused-parameter], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"], [], [$CXXFLAG_WERROR])
465-
AX_CHECK_COMPILE_FLAG([-Wself-assign], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"], [], [$CXXFLAG_WERROR])
466-
if test "$suppress_external_warnings" != "yes" ; then
467-
AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"], [], [$CXXFLAG_WERROR])
468-
fi
459+
AX_CHECK_COMPILE_FLAG([-Wunused-parameter],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"],,[[$CXXFLAG_WERROR]])
460+
AX_CHECK_COMPILE_FLAG([-Wself-assign],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"],,[[$CXXFLAG_WERROR]])
461+
AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]])
462+
AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-implicit-fallthrough"],,[[$CXXFLAG_WERROR]])
463+
AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy],[NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"],,[[$CXXFLAG_WERROR]])
469464
fi
470465

471466
dnl Don't allow extended (non-ASCII) symbols in identifiers. This is easier for code review.

contrib/linearize/linearize-data.py

+30-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@
1616
import hashlib
1717
import datetime
1818
import time
19+
import glob
1920
from collections import namedtuple
2021

22+
23+
2124
settings = {}
2225

2326
def calc_hash_str(blk_hdr):
@@ -53,6 +56,30 @@ def mkblockmap(blkindex):
5356
blkmap[hash] = height
5457
return blkmap
5558

59+
# This gets the first block file ID that exists from the input block
60+
# file directory.
61+
def getFirstBlockFileId(block_dir_path):
62+
# First, this sets up a pattern to search for block files, for
63+
# example 'blkNNNNN.dat'.
64+
blkFilePattern = os.path.join(block_dir_path, "blk[0-9][0-9][0-9][0-9][0-9].dat")
65+
66+
# This search is done with glob
67+
blkFnList = glob.glob(blkFilePattern)
68+
69+
if len(blkFnList) == 0:
70+
print("blocks not pruned - starting at 0")
71+
return 0
72+
# We then get the lexicographic minimum, which should be the first
73+
# block file name.
74+
firstBlkFilePath = min(blkFnList)
75+
firstBlkFn = os.path.basename(firstBlkFilePath)
76+
77+
# now, the string should be ['b','l','k','N','N','N','N','N','.','d','a','t']
78+
# So get the ID by choosing: 3 4 5 6 7
79+
# The ID is not necessarily 0 if this is a pruned node.
80+
blkId = int(firstBlkFn[3:8])
81+
return blkId
82+
5683
# Block header and extent on disk
5784
BlockExtent = namedtuple('BlockExtent', ['fn', 'offset', 'inhdr', 'blkhdr', 'size'])
5885

@@ -62,7 +89,9 @@ def __init__(self, settings, blkindex, blkmap):
6289
self.blkindex = blkindex
6390
self.blkmap = blkmap
6491

65-
self.inFn = 0
92+
# Get first occurring block file id - for pruned nodes this
93+
# will not necessarily be 0
94+
self.inFn = getFirstBlockFileId(self.settings['input'])
6695
self.inF = None
6796
self.outFn = 0
6897
self.outsz = 0

contrib/seeds/asmap.py

-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
def net_to_prefix(net: Union[ipaddress.IPv4Network,ipaddress.IPv6Network]) -> List[bool]:
1818
"""
1919
Convert an IPv4 or IPv6 network to a prefix represented as a list of bits.
20-
2120
IPv4 ranges are remapped to their IPv4-mapped IPv6 range (::ffff:0:0/96).
2221
"""
2322
num_bits = net.prefixlen
@@ -57,14 +56,12 @@ class _VarLenCoder:
5756
A class representing a custom variable-length binary encoder/decoder for
5857
integers. Each object represents a different coder, with different parameters
5958
minval and clsbits.
60-
6159
The encoding is easiest to describe using an example. Let's say minval=100 and
6260
clsbits=[4,2,2,3]. In that case:
6361
- x in [100..115]: encoded as [0] + [4-bit BE encoding of (x-100)].
6462
- x in [116..119]: encoded as [1,0] + [2-bit BE encoding of (x-116)].
6563
- x in [120..123]: encoded as [1,1,0] + [2-bit BE encoding of (x-120)].
6664
- x in [124..131]: encoded as [1,1,1] + [3-bit BE encoding of (x-124)].
67-
6865
In general, every number is encoded as:
6966
- First, k "1"-bits, where k is the class the number falls in (there is one class
7067
per element of clsbits).
@@ -269,10 +266,8 @@ def make_default(val: int, sub: "_BinNode") -> "_BinNode":
269266
class ASMap:
270267
"""
271268
A class whose objects represent a mapping from subnets to ASNs.
272-
273269
Internally the mapping is stored as a binary trie, but can be converted
274270
from/to a list of ASNEntry objects, and from/to the binary asmap file format.
275-
276271
In the trie representation, nodes are represented as bare lists for efficiency
277272
and ease of manipulation:
278273
- [0] means an unassigned subnet (no ASN mapping for it is present)
@@ -420,7 +415,6 @@ def __str__(self) -> str:
420415
def to_entries(self, overlapping: bool = True, fill: bool = False) -> List[ASNEntry]:
421416
"""
422417
Convert the mappings in this ASMap object to a list of ASNEntry objects.
423-
424418
Arguments:
425419
overlapping: Permit the subnets in the resulting ASNEntry to overlap.
426420
Setting this can result in a shorter list.
@@ -440,7 +434,6 @@ def from_random(num_leaves: int = 10, max_asn: int = 6,
440434
- Number of leaves in its trie (at least 1)
441435
- Maximum ASN value (at least 1)
442436
- Probability for leaf nodes to be unassigned
443-
444437
The number of leaves in the resulting object may be less than what is
445438
requested. This method is mostly intended for testing.
446439
"""
@@ -534,7 +527,6 @@ def recurse(node: _BinNode, default: int) -> List:
534527
def to_binary(self, fill: bool = False) -> bytes:
535528
"""
536529
Convert this ASMap object to binary.
537-
538530
Argument:
539531
fill: permit the resulting binary encoder to contain mappers for
540532
unassigned subnets in this ASMap object. Doing so may

contrib/seeds/generate-seeds.py

+5-12
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,20 @@
77
88
This script expects two text files in the directory that is passed as an
99
argument:
10-
1110
nodes_main.txt
1211
nodes_test.txt
13-
14-
These files must consist of lines in the format
15-
12+
These files must consist of lines in the format
1613
<ip>:<port>
1714
[<ipv6>]:<port>
1815
<onion>.onion:<port>
1916
<i2p>.b32.i2p:<port>
20-
2117
The output will be two data structures with the peers in binary format:
22-
2318
static const uint8_t chainparams_seed_{main,test}[]={
2419
...
2520
}
26-
2721
These should be pasted into `src/chainparamsseeds.h`.
2822
'''
29-
from __future__ import print_function, division
23+
3024
from base64 import b32decode
3125
from enum import Enum
3226
import struct
@@ -58,7 +52,7 @@ def name_to_bip155(addr):
5852
if len(vchAddr) == 32:
5953
return (BIP155Network.I2P, vchAddr)
6054
else:
61-
raise ValueError(f'Invalid I2P {vchAddr}')
55+
raise ValueError(f"Invalid I2P {vchAddr}")
6256
elif '.' in addr: # IPv4
6357
return (BIP155Network.IPV4, bytes((int(x) for x in addr.split('.'))))
6458
elif ':' in addr: # IPv6 or CJDNS
@@ -156,13 +150,13 @@ def process_nodes(g, f, structname):
156150
def main():
157151
if len(sys.argv)<2:
158152
print(('Usage: %s <path_to_nodes_txt>' % sys.argv[0]), file=sys.stderr)
159-
exit(1)
153+
sys.exit(1)
160154
g = sys.stdout
161155
indir = sys.argv[1]
162156
g.write('#ifndef BGL_CHAINPARAMSSEEDS_H\n')
163157
g.write('#define BGL_CHAINPARAMSSEEDS_H\n')
164158
g.write('/**\n')
165-
g.write(' * List of fixed seed nodes for the falco network\n')
159+
g.write(' * List of fixed seed nodes for the bitgesell network\n')
166160
g.write(' * AUTOGENERATED by contrib/seeds/generate-seeds.py\n')
167161
g.write(' *\n')
168162
g.write(' * Each line contains a BIP155 serialized (networkID, addr, port) tuple.\n')
@@ -176,4 +170,3 @@ def main():
176170

177171
if __name__ == '__main__':
178172
main()
179-

contrib/seeds/makeseeds.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,10 @@ def filterbyasn(asmap: ASMap, ips: List[Dict], max_per_asn: Dict, max_per_net: i
135135
(b) trimming ips to have at most `max_per_asn` ips from each asn in each net.
136136
"""
137137
# Sift out ips by type
138-
ips_ipv4 = [ip for ip in ips if ip['net'] == 'ipv4']
139-
ips_ipv6 = [ip for ip in ips if ip['net'] == 'ipv6']
138+
ips_ipv46 = [ip for ip in ips if ip['net'] in ['ipv4', 'ipv6']]
140139
ips_onion = [ip for ip in ips if ip['net'] == 'onion']
141140

142-
# Filter IPv4 by ASN
141+
# Filter IPv46 by ASN, and limit to max_per_net per network
143142
result = []
144143
net_count: Dict[str, int] = collections.defaultdict(int)
145144
asn_count: Dict[int, int] = collections.defaultdict(int)
@@ -185,6 +184,7 @@ def main():
185184
asmap = ASMap.from_binary(f.read())
186185
print('Done.', file=sys.stderr)
187186

187+
print('Loading and parsing DNS seeds…', end='', file=sys.stderr, flush=True)
188188
lines = sys.stdin.readlines()
189189
ips = [parseline(line) for line in lines]
190190
print('Done.', file=sys.stderr)
@@ -216,15 +216,14 @@ def main():
216216
print(f'{ip_stats(ips):s} Require a known and recent user agent', file=sys.stderr)
217217
# Sort by availability (and use last success as tie breaker)
218218
ips.sort(key=lambda x: (x['uptime'], x['lastsuccess'], x['ip']), reverse=True)
219-
# Filter out hosts with multiple ports, these are likely abusive
219+
# Filter out hosts with multiple bitcoin ports, these are likely abusive
220220
ips = filtermultiport(ips)
221221
print(f'{ip_stats(ips):s} Filter out hosts with multiple BGL ports', file=sys.stderr)
222222
# Look up ASNs and limit results, both per ASN and globally.
223223
ips = filterbyasn(asmap, ips, MAX_SEEDS_PER_ASN, NSEEDS)
224224
print(f'{ip_stats(ips):s} Look up ASNs and limit results per ASN and per net', file=sys.stderr)
225225
# Sort the results by IP address (for deterministic output).
226226
ips.sort(key=lambda x: (x['net'], x['sortkey']))
227-
228227
for ip in ips:
229228
if ip['net'] == 'ipv6':
230229
print(f"[{ip['ip']}]:{ip['port']}", end="")

contrib/testgen/base58.py

Whitespace-only changes.

debian.minimal/copyright

+3-3
Original file line numberDiff line numberDiff line change
@@ -1721,8 +1721,8 @@ Files: doc/man/BGL-cli.1
17211721
Copyright: 2009-2019 The Bitcoin Core developers
17221722
License: __UNKNOWN__
17231723
Please contribute if you find BGL Core useful. Visit
1724-
<https://BGLcore.org> for further information about the software.
1725-
The source code is available from <https://github.com/BGL/BGL>.
1724+
<https://bitgesell.ca> for further information about the software.
1725+
The source code is available from <https://github.com/BitgesellOfficial/bitgesell>.
17261726
.
17271727
This is experimental software.
17281728
Distributed under the MIT software license, see the accompanying file COPYING
@@ -2630,7 +2630,7 @@ Files: contrib/verifybinaries/verify.sh
26302630
Copyright: 2016 The Bitcoin Core developers Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php.
26312631
License: __UNKNOWN__
26322632
This script attempts to download the signature file SHA256SUMS.asc from
2633-
BGLcore.org and BGL.org and compares them.
2633+
bitgesell.ca and BGL.org and compares them.
26342634
It first checks if the signature passes, and then downloads the files specified in
26352635
the file, and checks if the hashes of these files match those that are specified
26362636
in the signature file.

depends/Makefile

+1-6
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,7 @@ NO_UPNP ?=
4444
NO_USDT ?=
4545
NO_NATPMP ?=
4646
MULTIPROCESS ?=
47-
LTO ?=
48-
NO_HARDEN ?=
49-
FALLBACK_DOWNLOAD_PATH ?= https://bitcoincore.org/depends-sources
50-
51-
C_STANDARD ?= c11
52-
CXX_STANDARD ?= c++17
47+
FALLBACK_DOWNLOAD_PATH ?= https://bitgesell.ca/depends-sources
5348

5449
BUILD = $(shell ./config.guess)
5550
HOST ?= $(BUILD)

0 commit comments

Comments
 (0)