-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* add: option "-prunedebuglogfile": limit filesize of debug.log (#110) The idea is `ShrinkDebugFile` in realtime. - AIM: to prevent disk is filling full up with log file. - DEBUG: If `debug.log` is over 10 MB (`10*1000*1000`), shrink to 1 MB (`1*1000*1000`). 10x smaller * `watch -n1 ls -lh debug.log` * `watch -n5 ps -p "$(cat sugarchaind.pid)" -o %cpu,%mem,cmd` - RUN: check logging speed and filesize * `sugarchaind -prunedebuglogfile -reindex-chainstate` - PERIOD: a cycle took around `4:30` when `-reindex-chainstate` ``` 2020-04-20 23:18:55 DEBUG.LOG PRUNED at 10000071 2020-04-20 23:24:33 DEBUG.LOG PRUNED at 10000014 2020-04-20 23:30:11 DEBUG.LOG PRUNED at 10000018 2020-04-20 23:35:45 DEBUG.LOG PRUNED at 10000186 ``` * IBD: do not check PoW (Yespower) during downloading headers (#122) * IBD: do not check PoW (Yespower) during downloading headers However this means checking PoW during IBD is, not actually skipped, but still checking in another places. This makes IBD much faster. * remove: debug printf * adding comment by volbil * revert: (#80) do not disconnect whitelisted peers during IBD (#124) * GUI: do not display in GB, but in MB (#125) * revert (#78) & fix: disabled more getheaders (#126) * revert&fix: disabled more getheaders * remove: printf * IBD: Print blockheader count on debug.log (#128) * revert: MINIMUM_CONNECT_TIME (#129) https://github.com/bitcoin/bitcoin/blob/f56c00b2345cd2e392ade4733e2ca9cb9b0af623/src/net_processing.h#L36 * Revert "revert: MINIMUM_CONNECT_TIME (#129)" (#130) This reverts commit e37dfec. * update: checkpoint (#132) * bump 0.16.3.31rc1 + manpage (#133) **Changes: v0.16.3.31rc1** - Major * Fix: IBD `30%` faster, and `60%` reduced data traffic #122 * Add: new option `-prunedebuglogfile`: limit filesize of debug.log #110 * Add: when IBD, print blockheader count on debug.log #128 * Update: checkpoints (mainnet) #132 - Minor * GUI: display size in MB (was GB) #125 * Revert: IBD settings back to BTC original #124 #126 * IBD: max blocks in transit per peer (cached PoW) (#135) * bump v0.16.3.32rc2 + manpage (#137) **Changes: v0.16.3.32rc2** - Major * Fix: IBD `30%` faster, and `60%` reduced data traffic #122 * Add: new option `-prunedebuglogfile`: limit filesize of debug.log #110 * Add: when IBD, print blockheader count on debug.log #128 * Update: checkpoints (mainnet) #132 * Fix: IBD optimizing #135 - Minor * GUI: display size in MB (was GB) #125 * Revert: IBD settings back to BTC original #124 #126 * fix: daemon Killed on ARM during IBD (out-of-memory) (#140) * Revert "revert (#78) & fix: disabled more getheaders (#126)" This reverts commit 7c45e62. * comment * remove: BCLog::POW (-debug=pow) (#142) * add: bootstrap height at 4421701 (#143) * scripts: In linearize, search for next position of magic bytes rather than fail bitcoin/bitcoin#16802 * add: bootstrap height at 4421701 * update: seeds 2020-05-19 KST (#144) * fix: travis: pathlib2 (#148) ImportError: No module named 'pathlib2' * doc (#151) * bump v0.16.3.33rc3 + manpage (#152) **Changes: v33rc3** - Major * Fix: IBD `30%` faster, and `60%` reduced data traffic #122 * Add: new option `-prunedebuglogfile`: limit filesize of debug.log #110 * Add: when IBD, print blockheader count on debug.log #128 * Update: checkpoints (mainnet) #132 * Fix: IBD optimizing #135 * Update: seed list #144 * Remove: BCLog::POW (-debug=pow) #142 - Minor * GUI: display size in MB (was GB) #125 * Revert: IBD settings back to BTC original #124 * Add: bootstrap height at 4421701 #143 * Fix: travis pathlib2 #148 * update: blockchain size as 3GB (#153) * cleanup (#154) * comment * seeds version checker * doc: release note v34 starboy (#160) * doc: release note: starboy * fix: known issue * bump: v0.16.3.34-starboy + manpage (#161) **Changes: v34-starboy (same as v33)** - Major * Fix: IBD `30%` faster, and `60%` reduced data traffic #122 * Add: new option `-prunedebuglogfile`: limit filesize of debug.log #110 * Add: when IBD, print blockheader count on debug.log #128 * Update: checkpoints (mainnet) #132 * Fix: IBD optimizing #135 * Update: seed list #144 * Remove: BCLog::POW (-debug=pow) #142 - Minor * GUI: display size in MB (was GB) #125 * Revert: IBD settings back to BTC original #124 * Add: bootstrap height at 4421701 #143 * Fix: travis pathlib2 #148
- Loading branch information
1 parent
37a137e
commit c4e813b
Showing
28 changed files
with
266 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
49.233.137.108:34230 | ||
51.89.173.178:34230 | ||
108.160.134.47:34230 | ||
118.25.3.242:34230 | ||
62.141.69.219:34230 | ||
89.175.21.60:34230 | ||
139.99.68.221:34230 | ||
150.95.139.225:34230 | ||
150.109.105.205:34230 | ||
155.138.139.97:34230 | ||
157.245.69.15:34230 | ||
159.226.73.22:34230 | ||
160.119.101.219:34230 | ||
163.44.174.184:34230 | ||
185.23.181.119:34230 | ||
207.148.84.128:34230 | ||
211.144.120.164:34230 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
133.130.127.189:44230 | ||
45.76.194.172:44230 | ||
150.95.146.185:44230 | ||
150.95.154.24:44230 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
# 1seed.sugarchain.info | ||
# address good lastSuccess %(2h) %(8h) %(1d) %(7d) %(30d) blocks svcs version | ||
157.245.69.15:34230 1 1580770662 100.00% 100.00% 100.00% 99.87% 90.53% 2831603 0000040d 70015 "/Yumekawa:0.16.3.21/" | ||
150.95.139.225:34230 1 1580770662 99.99% 99.39% 99.35% 99.79% 90.39% 2831603 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
51.89.173.178:34230 1 1580770662 100.00% 100.00% 100.00% 99.74% 89.94% 2831602 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
163.44.174.184:34230 1 1580770662 100.00% 100.00% 100.00% 99.69% 89.93% 2831603 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
108.160.134.47:34230 1 1580770662 100.00% 99.86% 99.31% 98.57% 88.95% 2831603 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
118.25.3.242:34230 1 1580652236 0.00% 1.51% 23.90% 78.80% 88.85% 2807871 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
159.226.73.22:34230 1 1580770662 100.00% 100.00% 100.00% 98.28% 78.37% 2831603 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
185.23.181.119:34230 1 1580770662 100.00% 100.00% 100.00% 97.99% 59.82% 2831602 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
211.144.120.164:34230 1 1580770304 99.94% 99.03% 98.58% 97.05% 59.39% 2831531 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
49.233.137.108:34230 1 1580770662 99.66% 98.44% 97.60% 96.10% 58.75% 2831604 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
150.109.105.205:34230 1 1580770662 100.00% 100.00% 99.97% 92.56% 56.58% 2831602 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
160.119.101.219:34230 1 1580770304 99.95% 85.38% 56.04% 77.25% 53.91% 2831533 0000040d 70015 "/Yumekawa:0.16.3.25/" | ||
45.32.110.154:34230 1 1580770662 100.00% 100.00% 100.00% 89.43% 40.80% 2831603 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
144.202.106.194:34230 1 1580770304 100.00% 100.00% 100.00% 89.42% 40.79% 2831534 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
125.143.78.5:34230 1 1579443514 98.81% 66.98% 35.51% 46.32% 20.32% 2566148 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
119.204.21.192:34230 0 1579606931 63.68% 24.94% 18.50% 7.05% 1.93% 2598735 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
118.24.66.160:34230 1 1578651688 98.72% 66.36% 30.45% 5.06% 1.20% 2407746 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
92.255.165.216:34230 0 1578536641 12.18% 8.27% 7.54% 2.23% 0.58% 2384881 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
49.172.58.185:34230 0 1574864440 69.05% 25.41% 9.31% 1.39% 0.33% 1648596 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
109.194.51.160:34230 0 1570969049 47.25% 16.03% 5.77% 0.85% 0.20% 871504 0000040d 70015 "/Yumekawa:0.16.3.21/" | ||
121.143.125.125:34230 0 1578530961 19.86% 9.00% 3.43% 0.52% 0.12% 2383692 0000040d 70015 "/Yumekawa:0.16.3.21/" | ||
59.16.145.202:34230 0 1574697610 19.72% 8.88% 3.38% 0.51% 0.12% 1605975 0000040d 70015 "/Yumekawa:0.16.3.21/" | ||
123.191.58.247:34230 0 1579508615 12.28% 5.88% 2.27% 0.34% 0.08% 2572882 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
163.44.174.184:34230 1 1589817423 100.00% 100.00% 100.00% 100.00% 96.81% 4640337 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
150.95.139.225:34230 1 1589817423 100.00% 100.00% 100.00% 99.94% 96.77% 4640336 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
157.245.69.15:34230 1 1589817423 100.00% 100.00% 100.00% 99.81% 96.30% 4640342 0000040d 70015 "/Yumekawa:0.16.3.21/" | ||
211.144.120.164:34230 1 1589817423 99.86% 98.06% 98.17% 98.49% 93.98% 4640339 0000040d 70015 "/Yumekawa:0.16.3.28/" | ||
51.89.173.178:34230 1 1589816688 100.00% 100.00% 99.99% 99.76% 91.21% 4640186 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
155.138.139.97:34230 1 1589817423 100.00% 100.00% 99.96% 98.55% 89.12% 4640335 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
207.148.84.128:34230 1 1589817423 100.00% 100.00% 99.98% 98.64% 88.91% 4640335 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
104.207.149.177:34230 1 1589817423 100.00% 97.30% 94.25% 97.27% 88.86% 4640343 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
95.179.246.196:34230 1 1589816688 100.00% 100.00% 99.90% 98.64% 88.76% 4640186 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
45.77.192.211:34230 1 1589817423 100.00% 100.00% 99.60% 97.82% 88.66% 4640335 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
45.76.194.172:34230 1 1589817423 99.67% 90.13% 90.25% 96.67% 88.61% 4640336 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
139.99.68.221:34230 1 1589817423 100.00% 100.00% 100.00% 99.96% 83.97% 4640335 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
216.155.157.233:34230 1 1589817423 100.00% 100.00% 99.99% 99.87% 83.92% 4640337 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
89.175.21.60:34230 1 1589817423 100.00% 100.00% 99.98% 99.85% 83.86% 4640339 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
62.141.69.219:34230 1 1589817423 100.00% 100.00% 100.00% 99.83% 83.75% 4640337 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
160.119.101.219:34230 1 1589131603 0.00% 0.00% 0.03% 31.71% 71.22% 4503284 0000040d 70015 "/Yumekawa:0.16.3.25/" | ||
108.160.134.47:34230 1 1588805064 0.00% 0.00% 0.00% 18.73% 64.34% 4438196 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
79.225.228.87:34230 0 1585332161 52.07% 21.24% 27.87% 17.57% 5.11% 3742953 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
103.45.116.22:34230 0 1581139974 5.16% 18.45% 11.34% 2.11% 0.51% 2905112 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
80.211.201.59:34230 0 1583912050 68.78% 25.31% 9.55% 1.52% 0.36% 3458987 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
92.255.165.216:34230 0 1585246252 17.14% 8.69% 3.40% 0.52% 0.12% 3642214 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
46.85.135.82:34230 0 1583829855 6.55% 3.47% 1.76% 0.33% 0.08% 3442601 0000040d 70015 "/Yumekawa:0.16.3.30/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# 1seed-testnet.cryptozeny.com | ||
# address good lastSuccess %(2h) %(8h) %(1d) %(7d) %(30d) blocks svcs version | ||
133.130.127.189:44230 1 1580768796 100.00% 100.00% 100.00% 100.00% 92.35% 803432 0000040d 70015 "/Yumekawa:0.16.3.24/" | ||
163.44.174.173:44230 1 1580694689 0.00% 7.16% 39.64% 79.58% 43.17% 803174 00000001 70015 "/Yumekawa:0.16.3.24(sugar-nomp)/" | ||
133.130.127.189:44230 1 1589817582 100.00% 100.00% 100.00% 99.99% 96.81% 2452765 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
150.95.154.24:44230 1 1589817582 100.00% 100.00% 100.00% 99.92% 96.13% 2452765 0000040d 70015 "/Yumekawa:0.16.3.29/" | ||
150.95.146.185:44230 1 1589817582 100.00% 100.00% 100.00% 99.11% 66.76% 2452765 0000040d 70015 "/Yumekawa:0.16.3.30/" | ||
45.76.194.172:44230 1 1589817582 99.95% 97.04% 96.73% 98.09% 66.40% 2452764 0000040d 70015 "/Yumekawa:0.16.3.30/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.