Skip to content

Commit 2532f3b

Browse files
Change port to bypass junk messages from nodes
1 parent 40a3aa7 commit 2532f3b

Some content is hidden

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

52 files changed

+157
-157
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Available at GitHub, see https://github.com/adeptio-project/adeptio/releases
6565

6666
• Max. Coin supply: infinite
6767

68-
• Network Port: 9077
68+
• Network Port: 9075
6969

7070
• RPC Port: 9078
7171

contrib/debian/examples/adeptio.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838

3939
# Use as many addnode= settings as you like to connect to specific peers
4040
#addnode=69.164.218.197
41-
#addnode=10.0.0.2:9077
41+
#addnode=10.0.0.2:9075
4242

4343
# Alternatively use as many connect= settings as you like to connect ONLY to specific peers
4444
#connect=69.164.218.197
45-
#connect=10.0.0.1:9077
45+
#connect=10.0.0.1:9075
4646

4747
# Listening mode, enabled by default except when 'connect' is being used
4848
#listen=1

contrib/debian/manpages/adeptio-qt.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Use proxy to reach tor hidden services (default: same as \fB\-proxy\fR)
4141
Allow DNS lookups for \fB\-addnode\fR, \fB\-seednode\fR and \fB\-connect\fR
4242
.TP
4343
\fB\-port=\fR<port>
44-
Listen for connections on <port> (default: 9077 or testnet: 19077)
44+
Listen for connections on <port> (default: 9075 or testnet: 19075)
4545
.TP
4646
\fB\-maxconnections=\fR<n>
4747
Maintain at most <n> connections to peers (default: 125)

contrib/debian/manpages/adeptio.conf.5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Enable or disable run on the test network instead of the real *adeptio* network.
1818
\fBproxy=\fR\fI'127.0.0.1:9050'\fR
1919
Connect via a socks4 proxy.
2020
.TP
21-
\fBaddnode=\fR\fI'10.0.0.2:9077'\fR
21+
\fBaddnode=\fR\fI'10.0.0.2:9075'\fR
2222
Use as many *addnode=* settings as you like to connect to specific peers.
2323
.TP
24-
\fBconnect=\fR\fI'10.0.0.1:9077'\fR
24+
\fBconnect=\fR\fI'10.0.0.1:9075'\fR
2525
Use as many *connect=* settings as you like to connect ONLY to specific peers.
2626
.TP
2727
\fRmaxconnections=\fR\fI'value'\fR
@@ -40,7 +40,7 @@ You must set *rpcpassword* to secure the JSON-RPC api.
4040
\fBrpcallowip=\fR\fI'192.168.1.*'\fR
4141
By default, only RPC connections from localhost are allowed. Specify as many *rpcallowip=* settings as you like to allow connections from other hosts (and you may use * as a wildcard character).
4242
.TP
43-
\fBrpcport=\fR\fI'9077'\fR
43+
\fBrpcport=\fR\fI'9075'\fR
4444
Listen for RPC connections on this TCP port.
4545
.TP
4646
\fBrpcconnect=\fR\fI'127.0.0.1'\fR

contrib/linearize/example-linearize.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
rpcuser=someuser
44
rpcpassword=somepassword
55
host=127.0.0.1
6-
port=9077
6+
port=9075
77

88
# bootstrap.dat hashlist settings (linearize-hashes)
99
max_height=500000

contrib/linearize/linearize-hashes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def get_block_hashes(settings, max_blocks_per_call=10000):
9696
if 'host' not in settings:
9797
settings['host'] = '127.0.0.1'
9898
if 'port' not in settings:
99-
settings['port'] = 9077
99+
settings['port'] = 9075
100100
if 'min_height' not in settings:
101101
settings['min_height'] = 0
102102
if 'max_height' not in settings:

contrib/qos/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Qos ###
22

3-
This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 9077, but not if the destination IP is within a LAN (defined as 192.168.x.x).
3+
This is a Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. It limits outbound TCP traffic with a source or destination port of 9075, but not if the destination IP is within a LAN (defined as 192.168.x.x).
44

55
This means one can have an always-on adeptiod instance running, and another local adeptiod/adeptio-qt instance which connects to this node and receives blocks from it.

contrib/qos/tc.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ tc filter add dev ${IF} parent 1: protocol ip prio 2 handle 2 fw classid 1:11
3232
# ret=$?
3333
#done
3434

35-
#limit outgoing traffic to and from port 9077. but not when dealing with a host on the local network
35+
#limit outgoing traffic to and from port 9075. but not when dealing with a host on the local network
3636
# (defined by $LOCALNET)
3737
# --set-mark marks packages matching these criteria with the number "2"
3838
# these packages are filtered by the tc filter with "handle 2"
3939
# this filter sends the packages into the 1:11 class, and this class is limited to ${LIMIT}
40-
iptables -t mangle -A OUTPUT -p tcp -m tcp --dport 9077 ! -d ${LOCALNET} -j MARK --set-mark 0x2
41-
iptables -t mangle -A OUTPUT -p tcp -m tcp --sport 9077 ! -d ${LOCALNET} -j MARK --set-mark 0x2
40+
iptables -t mangle -A OUTPUT -p tcp -m tcp --dport 9075 ! -d ${LOCALNET} -j MARK --set-mark 0x2
41+
iptables -t mangle -A OUTPUT -p tcp -m tcp --sport 9075 ! -d ${LOCALNET} -j MARK --set-mark 0x2

contrib/seeds/generate-seeds.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ def main():
127127
g.write(' * IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.\n')
128128
g.write(' */\n')
129129
with open(os.path.join(indir,'nodes_main.txt'),'r') as f:
130-
process_nodes(g, f, 'pnSeed6_main', 9077)
130+
process_nodes(g, f, 'pnSeed6_main', 9075)
131131
g.write('\n')
132132
with open(os.path.join(indir,'nodes_test.txt'),'r') as f:
133-
process_nodes(g, f, 'pnSeed6_test', 19077)
133+
process_nodes(g, f, 'pnSeed6_test', 19075)
134134
g.write('#endif // BITCOIN_CHAINPARAMSSEEDS_H\n')
135135

136136
if __name__ == '__main__':

doc/masternode_conf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ The new masternode.conf format consists of a space seperated text file. Each lin
1010

1111
Example:
1212
```
13-
mn1 127.0.0.2:9077 7UHaYBVUCYjEMeeH1Y4sBGLALQZE1Yc1K64xiqgX37tGBDQL8Xg 2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c 0
14-
mn2 127.0.0.3:9077 7aWaAb3htPJEV8E9aQcN23Jt97bPex7YvWfgMDTUdWJvzmrMqey aa9f1034d973377a5e733272c3d0eced1de22555ad45d6b24abadff8087948d4 0 AdnwGHt17heGpG9Crfeh4KGpYNFugPhJdh:33
15-
mn3 127.0.0.4:9077 7cDa1aYg6sbenP6uwskJgEY2XWB5LwJ7bXRqc3UPeShtHWJDjDv db478e78e3aefaa8c12d12ddd0aeace48c3b451a8b41c570d0ee375e2a02dfd9 1 A5gnwGHt17heGpG9Crfeh4KGpYNFugPhJdh
13+
mn1 127.0.0.2:9075 7UHaYBVUCYjEMeeH1Y4sBGLALQZE1Yc1K64xiqgX37tGBDQL8Xg 2bcd3c84c84f87eaa86e4e56834c92927a07f9e18718810b92e0d0324456a67c 0
14+
mn2 127.0.0.3:9075 7aWaAb3htPJEV8E9aQcN23Jt97bPex7YvWfgMDTUdWJvzmrMqey aa9f1034d973377a5e733272c3d0eced1de22555ad45d6b24abadff8087948d4 0 AdnwGHt17heGpG9Crfeh4KGpYNFugPhJdh:33
15+
mn3 127.0.0.4:9075 7cDa1aYg6sbenP6uwskJgEY2XWB5LwJ7bXRqc3UPeShtHWJDjDv db478e78e3aefaa8c12d12ddd0aeace48c3b451a8b41c570d0ee375e2a02dfd9 1 A5gnwGHt17heGpG9Crfeh4KGpYNFugPhJdh
1616
```
1717

1818
In the example above:

doc/tor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SOCKSPolicy accept 127.0.0.1/8
5959
Log notice file /var/log/tor/notices.log
6060
ControlPort 9051
6161
HiddenServiceDir /var/lib/tor/dnet/
62-
HiddenServicePort 989 127.0.0.1:9077
62+
HiddenServicePort 989 127.0.0.1:9075
6363
HiddenServiceStatistics 0
6464
ORPort 9001
6565
LongLivedPorts 989
@@ -69,7 +69,7 @@ NumEntryGuards 8
6969
```
7070

7171
The directory can be different of course, but (both) port numbers should be equal to
72-
your adeptiod's P2P listen port (9077 by default).
72+
your adeptiod's P2P listen port (9075 by default).
7373
```
7474
-externalip=X You can tell adeptio about its publicly reachable address using
7575
this option, and this can be a .onion address. Given the above
@@ -102,7 +102,7 @@ specify:
102102
./adeptiod ... -discover
103103
```
104104

105-
and open port 9077 on your firewall (or use -upnp).
105+
and open port 9075 on your firewall (or use -upnp).
106106

107107
If you only want to use Tor to reach onion addresses, but not use it as a proxy
108108
for normal IPv4/IPv6 communication, use:

qa/rpc-tests/proxy_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ def node_test(self, node, proxies, auth):
100100
rv.append(cmd)
101101

102102
# Test: outgoing onion connection through node
103-
node.addnode("adeptiovj7kcklujarx.onion:9077", "onetry")
103+
node.addnode("adeptiovj7kcklujarx.onion:9075", "onetry")
104104
cmd = proxies[2].queue.get()
105105
assert(isinstance(cmd, Socks5Command))
106106
assert_equal(cmd.atyp, AddressType.DOMAINNAME)
107107
assert_equal(cmd.addr, "adeptiovj7kcklujarx.onion")
108-
assert_equal(cmd.port, 9077)
108+
assert_equal(cmd.port, 9075)
109109
if not auth:
110110
assert_equal(cmd.username, None)
111111
assert_equal(cmd.password, None)

scripts/old_versions/setup_adeptio_cold_masternode_ipv4_v1.0.0.2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ daemon=1
148148
staking=1
149149
maxconnections=125
150150
masternode=1
151-
masternodeaddr=$wanip:9077
151+
masternodeaddr=$wanip:9075
152152
externalip=$wanip
153153
masternodeprivkey=$privkey
154154
addnode=202.182.106.136
@@ -180,7 +180,7 @@ EOF
180180
# Firewall //
181181
echo "Update firewall rules"
182182
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh serer'
183-
sudo /usr/sbin/ufw allow 9077/tcp
183+
sudo /usr/sbin/ufw allow 9075/tcp
184184
sudo /usr/sbin/ufw --force enable
185185
echo ""
186186

scripts/old_versions/setup_adeptio_cold_masternode_ipv4_v2.0.0.0.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ maxconnections=256
239239
masternode=1
240240
bind=$wanip
241241
externalip=$wanip
242-
masternodeaddr=$wanip:9077
242+
masternodeaddr=$wanip:9075
243243
externalip=$wanip
244244
masternodeprivkey=$privkey
245245
enablezeromint=0
@@ -249,7 +249,7 @@ EOF
249249
echo -e "${GREEN}4/10 Update firewall rules${NC}"
250250
echo ""
251251
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh server'
252-
sudo /usr/sbin/ufw allow 9077/tcp comment 'Adeptio Wallet daemon'
252+
sudo /usr/sbin/ufw allow 9075/tcp comment 'Adeptio Wallet daemon'
253253
sudo /usr/sbin/ufw allow 9079/tcp comment 'Adeptio storADEserver protocol TCP'
254254
sudo /usr/sbin/ufw allow 9079/udp comment 'Adeptio storADEserver protocol UDP'
255255
sudo /usr/sbin/ufw --force enable

scripts/old_versions/setup_adeptio_cold_masternode_ipv6_v1.0.0.2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ daemon=1
148148
staking=1
149149
maxconnections=125
150150
masternode=1
151-
masternodeaddr=[$wanipv6]:9077
151+
masternodeaddr=[$wanipv6]:9075
152152
externalip=[$wanipv6]
153153
masternodeprivkey=$privkey
154154
addnode=202.182.106.136
@@ -180,7 +180,7 @@ EOF
180180
# Firewall //
181181
echo "Update firewall rules"
182182
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh serer'
183-
sudo /usr/sbin/ufw allow 9077/tcp
183+
sudo /usr/sbin/ufw allow 9075/tcp
184184
sudo /usr/sbin/ufw --force enable
185185
echo ""
186186

scripts/old_versions/setup_adeptio_cold_masternode_ipv6_v2.0.0.0.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ staking=1
250250
maxconnections=256
251251
masternode=1
252252
bind=[$wanipv6]
253-
masternodeaddr=[$wanipv6]:9077
253+
masternodeaddr=[$wanipv6]:9075
254254
externalip=[$wanipv6]
255255
masternodeprivkey=$privkey
256256
enablezeromint=0
@@ -272,7 +272,7 @@ EOF
272272
echo -e "${GREEN}4/10 Update firewall rules${NC}"
273273
echo ""
274274
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh server'
275-
sudo /usr/sbin/ufw allow 9077/tcp comment 'Adeptio Wallet daemon'
275+
sudo /usr/sbin/ufw allow 9075/tcp comment 'Adeptio Wallet daemon'
276276
sudo /usr/sbin/ufw allow 9079/tcp comment 'Adeptio storADEserver protocol TCP'
277277
sudo /usr/sbin/ufw allow 9079/udp comment 'Adeptio storADEserver protocol UDP'
278278
sudo /usr/sbin/ufw --force enable

scripts/old_versions/setup_adeptio_hot_masternode_ipv4_v1.0.0.1.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ daemon=1
145145
staking=1
146146
maxconnections=125
147147
masternode=1
148-
masternodeaddr=$wanip:9077
148+
masternodeaddr=$wanip:9075
149149
externalip=$wanip
150150
masternodeprivkey=$masternodeprivkey
151151
addnode=202.182.106.136
@@ -177,7 +177,7 @@ EOF
177177
# Firewall //
178178
echo "Update firewall rules"
179179
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh serer'
180-
sudo /usr/sbin/ufw allow 9077/tcp
180+
sudo /usr/sbin/ufw allow 9075/tcp
181181
sudo /usr/sbin/ufw --force enable
182182
echo ""
183183

scripts/old_versions/setup_adeptio_hot_masternode_ipv4_v1.0.0.2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ daemon=1
153153
staking=1
154154
maxconnections=125
155155
masternode=1
156-
masternodeaddr=$wanip:9077
156+
masternodeaddr=$wanip:9075
157157
externalip=$wanip
158158
masternodeprivkey=$masternodeprivkey
159159
addnode=202.182.106.136
@@ -185,7 +185,7 @@ EOF
185185
# Firewall //
186186
echo "Update firewall rules"
187187
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh serer'
188-
sudo /usr/sbin/ufw allow 9077/tcp
188+
sudo /usr/sbin/ufw allow 9075/tcp
189189
sudo /usr/sbin/ufw --force enable
190190
echo ""
191191

scripts/old_versions/setup_adeptio_hot_masternode_ipv6_v1.0.0.1.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ daemon=1
145145
staking=1
146146
maxconnections=125
147147
masternode=1
148-
masternodeaddr=[$wanipv6]:9077
148+
masternodeaddr=[$wanipv6]:9075
149149
externalip=[$wanipv6]
150150
masternodeprivkey=$masternodeprivkey
151151
addnode=202.182.106.136
@@ -177,7 +177,7 @@ EOF
177177
# Firewall //
178178
echo "Update firewall rules"
179179
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh serer'
180-
sudo /usr/sbin/ufw allow 9077/tcp
180+
sudo /usr/sbin/ufw allow 9075/tcp
181181
sudo /usr/sbin/ufw --force enable
182182
echo ""
183183

scripts/old_versions/setup_adeptio_hot_masternode_ipv6_v1.0.0.2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ daemon=1
153153
staking=1
154154
maxconnections=125
155155
masternode=1
156-
masternodeaddr=[$wanipv6]:9077
156+
masternodeaddr=[$wanipv6]:9075
157157
externalip=[$wanipv6]
158158
masternodeprivkey=$masternodeprivkey
159159
addnode=202.182.106.136
@@ -185,7 +185,7 @@ EOF
185185
# Firewall //
186186
echo "Update firewall rules"
187187
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh serer'
188-
sudo /usr/sbin/ufw allow 9077/tcp
188+
sudo /usr/sbin/ufw allow 9075/tcp
189189
sudo /usr/sbin/ufw --force enable
190190
echo ""
191191

scripts/setup_adeptio_cold_masternode_ipv4_latest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ maxconnections=256
239239
masternode=1
240240
bind=$wanip
241241
externalip=$wanip
242-
masternodeaddr=$wanip:9077
242+
masternodeaddr=$wanip:9075
243243
externalip=$wanip
244244
masternodeprivkey=$privkey
245245
enablezeromint=0
@@ -249,7 +249,7 @@ EOF
249249
echo -e "${GREEN}4/10 Update firewall rules${NC}"
250250
echo ""
251251
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh server'
252-
sudo /usr/sbin/ufw allow 9077/tcp comment 'Adeptio Wallet daemon'
252+
sudo /usr/sbin/ufw allow 9075/tcp comment 'Adeptio Wallet daemon'
253253
sudo /usr/sbin/ufw allow 9079/tcp comment 'Adeptio storADEserver protocol TCP'
254254
sudo /usr/sbin/ufw allow 9079/udp comment 'Adeptio storADEserver protocol UDP'
255255
sudo /usr/sbin/ufw --force enable

scripts/setup_adeptio_cold_masternode_ipv6_latest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ staking=1
238238
maxconnections=256
239239
masternode=1
240240
bind=[$wanipv6]
241-
masternodeaddr=[$wanipv6]:9077
241+
masternodeaddr=[$wanipv6]:9075
242242
externalip=[$wanipv6]
243243
masternodeprivkey=$privkey
244244
enablezeromint=0
@@ -248,7 +248,7 @@ EOF
248248
echo -e "${GREEN}4/10 Update firewall rules${NC}"
249249
echo ""
250250
sudo /usr/sbin/ufw limit ssh/tcp comment 'Rate limit for openssh server'
251-
sudo /usr/sbin/ufw allow 9077/tcp comment 'Adeptio Wallet daemon'
251+
sudo /usr/sbin/ufw allow 9075/tcp comment 'Adeptio Wallet daemon'
252252
sudo /usr/sbin/ufw allow 9079/tcp comment 'Adeptio storADEserver protocol TCP'
253253
sudo /usr/sbin/ufw allow 9079/udp comment 'Adeptio storADEserver protocol UDP'
254254
sudo /usr/sbin/ufw --force enable

src/accumulatorcheckpoints.json.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ std::string GetMainCheckpoints() {
104104
" \"50\": \"262505ba1af97dc950efecc7329712c330008cc37bdbf4fead92dae434732270fbbfdd7b0be18b0316efdc784a1bca9fa87595806af9ae2f986dd58ca34df2b928f3908f2a6c83c5c319d29a9acf97c26a233c64a4e0dcbb95fbfea442ef819eba6e16c78ba462cf51b2bdd0c0d7e45646b7254113b15c04e682c319c69ab6c4e3e08cb93f4521b3fdbdd128c42647af54b395d5a4f54bdc0661d926c98460213b89fea1f0487154492f06e9f7cceb0ce732cb69d98b9889b1bc6949f49c150b4c13a22012df6540139caa63b4b514cffae7b62b78a8a5e90bac52ea8a57be510506f955e3153a22e0a929134c5a9ea7c959b14e7758609da68e3ea2068a99ba\",\n"
105105
" \"100\": \"9ab4640438964838c6f3e22e017b6cdb0bf9edf4044f35024d0a29431f98412972ab282be66f18e4921cc6895e1544960494303658c3afc512035333bc53550037358326f17dd72f4d82c9627333429a7f7fe79b2f4643ca5b5bc145b1b710cb104b9b16b005a21e473a926f2605c677c580b5dd3b542f82aa5a3792c3d3956d12b05524426f64ec57bd4a78c1e2258b5801f1f64c514b6c1753e13ca8ce070fd8d6afe23838bb089269c00e755e52f0381d350a2d0c13b3cd226f8ef50717966a332268a2a76f5492da6d220be406a95d226192108df542fc1dbbfd446d77f7c2a9b4296a7e59f53382c555290ea3e49c1b4bd68f0e91ca31fdc0feba0554a4\",\n"
106106
" \"500\": \"4582f0a2fc3d34f94996b120f7a52a2b97a1a72c28326e3e4a402a2f7cb8b1158be2c0979d33b2cbc4ec29da98e6dda2249d10c87f09afb7ad24b9efd1554850a4f56f1e0708f1911986ed054f02ab7e59240ca25326957892fef8df7b984527f04879436966648ca7b5b1832ababa351b67921955ea486a7bd37b48d202ba64de770aa3be08c6d14f9024fce4adeacd1af8f4ad1a69814a446a39992d883d2cc946a95ca2102b1379b1d9e145f69b22a45954951c109df2a584136eb8c8b9fd1252fa1f439a27ff5f3e6cc5c107eb77fa059989c3b1ded6226453005fbf1ffaa4cb9b0c56d58f84f377a0f55355edc2824e985ac09aa81ed3a6a91024bbc5df\",\n"
107-
" \"1000\": \"9a4b9236477b259752120477dece65df779b409e207f5994cfed266258d2e0c205341e698d07e740535ab770550ce7de9ac130077f74741cc011641c6253f43302810e017e59e6e4eb285b236f70215198439207c62487aee2c46b68590e2cb9d30d5b3abd2c619404907725c93469c72aa00aee72e15f752805b5234ed79f36b90699af1af63995c39cd1c00f15b6aa184b0ebe864d63a352c36f78110ea26876bc7f87b965e5bab7b2990ae2832578ac800c73181dfdd4ea6d49a040547d54692725c183dd21a95b2ca9f4acba3b2539ce8e8ea98039d049e8339ac07ee52e0d4d538e89c1875ccdb7be510ee85fe1d9904b78922135e826e30c8ed19c0a78\",\n"
107+
" \"1000\": \"9a4b9236477b259752120477dece65df779b409e207f5994cfed266258d2e0c205341e698d07e740535ab770550ce7de9ac130077f74741cc011641c6253f43302810e017e59e6e4eb285b236f70215198439207c62487aee2c46b68590e2cb9d30d5b3abd2c619404907525c93469c72aa00aee72e15f752805b5234ed79f36b90699af1af63995c39cd1c00f15b6aa184b0ebe864d63a352c36f78110ea26876bc7f87b965e5bab7b2990ae2832578ac800c73181dfdd4ea6d49a040547d54692725c183dd21a95b2ca9f4acba3b2539ce8e8ea98039d049e8339ac07ee52e0d4d538e89c1875ccdb7be510ee85fe1d9904b78922135e826e30c8ed19c0a78\",\n"
108108
" \"5000\": \"35443f26394eb3d05b1cafcfe4b731bf14f730d30e0ac3fd4d5a46e56c7e8fba0096a554d79b8826aec502e11adfbc78cb8a393e07713cd9eb2bc16b831e6cceb94aeb0c360ae71ae8d014537c92ff67f7a5ab2e5e8de486d2568564c36c1e5104bb258f413daf143a3a9a2894d423da5f580cc550d9de22e5163fbc225ee2f07d9da02613b0c904bc2a7e7c69d21922fdf04479e18c6e3d93df9c392cc3aa7933af4db7f2fc972d41543a5fec36df8ca426f763df84dd3320bfc8b906e379362086fa319a322eda356257665a7d48135eeeb3531976287270035f92f3ce6299c0b72aefee88c4be7a0e5171ce3103105a9e204c0e31efefe7ac0de97aff4021\"\n"
109109
" },\n"
110110
" {\n"
@@ -363,7 +363,7 @@ std::string GetTestCheckpoints() {
363363
" \"50\": \"5e5e22d6ba74936f9759062972810a71ab1353c18f5196ce9c67559ab108b70ab375a08936b048fe4b206d2f1626215a07e8ad94d2af0d08df10ba15a16db6253494954743f3c4a4b9bfc46c187dcc5dde948186bdf3ef9b35ff80d5acfd5c0b9dbf6e498fc9c008b6bfc945b0cef5e19369473884c4e8f30118009e59c09c35ef50edaeb415957ba9096cebf70b36cd2b063ac98b51baa6480f19d6b584db015f5267518db505b5461fb9d7920d36070d2f4a7d0d0ead789ba5e6497e3187f4b09b7d0b5cdb270a3a21e644d0780b877ebf148515b91b5cc21fdbca79933a123dd078f038f10bd1762bf8b17db45edac7a4616557e88032e8dd4291de754242\",\n"
364364
" \"100\": \"6272bcbdb052b79b4a1bdd247be96f7bddf4265b829802d040aae2e993a44010649caa9782c81dcb4c828c8339ba7362c936f3ada1af36614fb50fbf7ec3b3e555b5525354a3bf4272dac7c64f8b75591d1cb7e55bebd5469c0d5cf0fa99dbb35c8be53450c694fdee607568efcb5b5b222592b9fe2912f2abf06a9c9d693cf848b57888050c424dba4553ea2e38bbf495a35431cd9e8838ee0ca6e5721ae922be73a588f421aadd62eb9479fe6dc85f09c80f136245b785938e544faae3b838354457cfe13ddf5915e74af9b5e5d7b1967d0e97c0a92538dae8608f6bdd8091077bded3583297ce7ab5e8b62f6b19eb19cf2f81dce9b9b730c05633de4d3344\",\n"
365365
" \"500\": \"187bd392265369a2d4d43c55acf8e6115abf9852dd4daed3f3560c79fee2ba52252d4a8d907adbac8c7ea32eeb48f7d3c25ebd89cd4daadfd777712cc77d8bf7759f6982c7fcb0240a337959ad379839c81bfe62b39cfab465614d632a4a05fa9b00f909f5b870878d5df80031cb5474143ac8bafd1b283076689c5b1058ada34d0881b93a54ff2ced9f4440dce7a097fea08b822121a4d21dfe7a26a3757f84dca48d06f66cf6a8fc54a0ae2baadba5654a359c54f98508d2ddadf18b2e8f02700896957bb2ab12a9fbe9e34185f5f73256a15af3ce727fb8b464307a62757a087ece6b81dd41490ba781ac8dda07257dfc38d6a7455a37fd3f136945064c59\",\n"
366-
" \"1000\": \"a3d231f833733f1e4054652f6a4ecb0b5e0c78686694808f4e85b9afa2942d4528ec437e366aecf787daa3e85a3583d64db4f55e089af26029f6d21d51dbd4b006db3f49f646127bc4cb4253c25ac313e47d2ee78dd3292d5454b61c1c118b120dc390fe2a67899c3e5c6fc52acadd711a711ee6af39ea14dc23fa1b62883fee2da30e4d0588050d8989a1e82d37b71f46ee33b9a49f290771ba59fd940c5140fa52864936cf2e4ba5e2f1f97e4f0c3cf8105dbfafa390591d5bc36ea5975c1daa09ac9e9f27be3d09793e154364bebd044bc7b8ef45afd168f85a083a002d7171ce850e44d03847f22d58f91675bc8dbdb5463c1dbdff409cebb4d6fe04f8f7\",\n"
366+
" \"1000\": \"a3d231f833733f1e4054652f6a4ecb0b5e0c78686694808f4e85b9afa2942d4528ec437e366aecf787daa3e85a3583d64db4f55e089af26029f6d21d51dbd4b006db3f49f646127bc4cb4253c25ac313e47d2ee78dd3292d5454b61c1c118b120dc390fe2a67899c3e5c6fc52acadd711a711ee6af39ea14dc23fa1b62883fee2da30e4d0588050d8989a1e82d37b71f46ee33b9a49f290751ba59fd940c5140fa52864936cf2e4ba5e2f1f97e4f0c3cf8105dbfafa390591d5bc36ea5975c1daa09ac9e9f27be3d09793e154364bebd044bc7b8ef45afd168f85a083a002d7171ce850e44d03847f22d58f91675bc8dbdb5463c1dbdff409cebb4d6fe04f8f7\",\n"
367367
" \"5000\": \"6cf4d91b8fabacda47c006e55217801f326f965191b4e49ab82e67ce07381e77e48c915e5ec45929a4a3168fd515c03eb0b310b47b09122b561dab402f1e3742ce8e3c70c5f0ba572a1b3ea777f3395287065187ff15c1061e7bdc241ed26ab39a07d720927f0349418c0af3e7275c59bc249fbe9ced8c85e9103c403808940dcd1fca2583fd0ab9490ae227e11eaa63b1b5d7963bd18d59efd100a0a1cb22de12d34d6f352ea03aceada0dba69a545ea5a5fa467724472f9dcc66fc160236f827aea698786d9d4578d844ebfabbf94f6bea677041a283285c89758fa3c23b8b35600262ca2ead331d0cd973a83245eaa0c488b74c885d4b46a27296eb6677f7\"\n"
368368
" },\n"
369369
" {\n"

0 commit comments

Comments
 (0)