Skip to content

Commit

Permalink
[backport] API server v34 starboy (88fe002) (#165)
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
decryp2kanon authored Jun 14, 2020
1 parent 37a137e commit c4e813b
Show file tree
Hide file tree
Showing 28 changed files with 266 additions and 119 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ install:
- if [ -n "$DPKG_ADD_ARCH" ]; then sudo dpkg --add-architecture "$DPKG_ADD_ARCH" ; fi
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
- if [ "$CHECK_DOC" = 1 -a "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then travis_retry pip3 install flake8 --user; fi
- if [ "$CHECK_DOC" = 1 -a "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then travis_retry pip3 install pathlib2 flake8 --user; fi
before_script:
- if [ "$CHECK_DOC" = 1 -a "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then contrib/devtools/commit-script-check.sh $TRAVIS_COMMIT_RANGE; fi
- if [ "$CHECK_DOC" = 1 ]; then contrib/devtools/git-subtree-check.sh src/crypto/ctaes; fi
Expand Down
23 changes: 11 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ information or see https://opensource.org/licenses/MIT.
Minimum Requirement
-------------------
- CPU: 1 Core
- RAM: 1024 MB (at least 2048 MB [swap](https://github.com/sugarchain-project/doc/blob/master/swap.md))
- DISK: 3 GB
- RAM: 1024 MB (at least 3 GB [swap](https://github.com/sugarchain-project/doc/blob/master/swap.md))
- DISK: 5 GB


Depends on Bitcoin Core
Expand Down Expand Up @@ -108,9 +108,6 @@ Run
---
The options `-rpcuser`, `-rpcpassword`, and `-printtoconsole` are optional. `server=1` needed by RPC servers or cpuminer when solo-mining.

- Mainnet: debug mode: `pow` for PoW
> ./src/qt/sugarchain-qt -server=1 -rpcuser=rpcuser -rpcpassword=rpcpassword **-debug=pow** -printtoconsole
- Mainnet: debug mode: `net` for Network
> ./src/qt/sugarchain-qt -server=1 -rpcuser=rpcuser -rpcpassword=rpcpassword **-debug=net** -printtoconsole
Expand All @@ -134,18 +131,20 @@ Known Issues
------------
- Transaction too large:
* This is a part of BTC.
* It will be fixed in next *Schnorr Signature* update.
* It will be fixed in next *Taproot+Schnorr* update.
- Slow update balance on wallet:
* Update total balance *every minute (12 blocks)* interval.
* This slow is a part of BTC.
* Update total balance *every minute (12 blocks)* interval.
* This fix is a (nice) workaround for now. [source](https://github.com/sugarchain-project/sugarchain/commit/72436c90b29844cf507895df053103f9b6840776#diff-2e3836af182cfb375329c3463ffd91f8)
- Poor performance on ARM CPUs (32/64-Bit):
* ARM optimization for Yespower disabled for now.
* *TODO*
* No ARM optimization for Yespower yet.
- Poor performance on 32-Bit OS:
* SSE2 for Yespower disabled for now. [source](https://github.com/sugarchain-project/sugarchain/blob/d977987a83aba115d50a9130f0d7914330d1bc75/src/crypto/yespower-1.0.1/yespower-opt.c#L59)
* Please use *64-bit* for best performance.

* No SSE2 optimization for Yespower yet. [source](https://github.com/sugarchain-project/sugarchain/blob/d977987a83aba115d50a9130f0d7914330d1bc75/src/crypto/yespower-1.0.1/yespower-opt.c#L59)
- Slow startup on low memory machines:
* Startup can take up to some hours on 1cpu 1024ram (+swap 3GB) VPS.
* Workaround is just increase RAM at least 2 GB.
- Slow rescanning `wallet.dat`:
* If your wallet is too heavy or mining purpose, it may take very long when importing.

Release process using GITIAN
----------------------------
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 16)
define(_CLIENT_VERSION_REVISION, 3)
define(_CLIENT_VERSION_BUILD, 30)
define(_CLIENT_VERSION_BUILD, 34)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_HOLDERS,[The %s developers])
Expand Down
8 changes: 4 additions & 4 deletions contrib/linearize/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ Change absolute location in `linearize.cfg`

$ head -1 hashlist.txt # genesis
7d5eaec2dbb75f99feadfa524c78b7cabc1d8c8204f79d4f3a83381b811b0adc
$ wc -l hashlist.txt # 2601001+1 (add genesis)
2601002 hashlist.txt
$ tail -n 1 hashlist.txt # height 2601001 # getblockhash 2601001
56e8f536feb26f749ed9198f56f397da08f018de9518674b2ac12a41061612cb
$ wc -l hashlist.txt # 4421701+1 (add genesis)
4421702 hashlist.txt
$ tail -n 1 hashlist.txt # height 4421701 # getblockhash 4421701
9a9c7db86b1a67a399d50f7f45b1d4bbb9179bcf0be08331239a1b9881ebcea9

## Step 2: Copy local block data

Expand Down
7 changes: 5 additions & 2 deletions contrib/linearize/linearize-data.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,11 @@ def run(self):

inMagic = inhdr[:4]
if (inMagic != self.settings['netmagic']):
print("Invalid magic: " + hexlify(inMagic).decode('utf-8'))
return
# Seek backwards 7 bytes (skipping the first byte in the previous search)
# and continue searching from the new position if the magic bytes are not
# found.
self.inF.seek(-7, os.SEEK_CUR)
continue
inLenLE = inhdr[4:]
su = struct.unpack("<I", inLenLE)
inLen = su[0] - 80 # length without header
Expand Down
6 changes: 3 additions & 3 deletions contrib/linearize/linearize.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ port=34229
#port=45339

# bootstrap.dat hashlist settings (linearize-hashes)
# at this moment, the height is approx. 2825602 (2020-02-03)
# 510*(510*10)+1
max_height=2601001
# at this moment, the height is approx. 4638846 (2020-05-18)
# (510*510*17)+1=4421701
max_height=4421701

# bootstrap.dat input/output settings (linearize-data)

Expand Down
2 changes: 1 addition & 1 deletion contrib/seeds/makeseeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
PATTERN_ONION = re.compile(r"^([abcdefghijklmnopqrstuvwxyz234567]{16}\.onion):(\d+)$")
PATTERN_AGENT = re.compile(
r"^/Yumekawa:("
r"0.16.(3).(21|23|24|25|26|27|28|29|30|31|32|33)|"
r"0.16.(3).(21|23|24|25|26|27|28|29|30|31|32|33|34|35|36|37)|"
r"0.19.99"
r")")

Expand Down
11 changes: 5 additions & 6 deletions contrib/seeds/nodes_main.txt
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
4 changes: 3 additions & 1 deletion contrib/seeds/nodes_test.txt
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
45 changes: 22 additions & 23 deletions contrib/seeds/seeds_main.txt
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/"
6 changes: 4 additions & 2 deletions contrib/seeds/seeds_test.txt
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/"
6 changes: 3 additions & 3 deletions doc/man/sugarchain-cli.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
.TH SUGARCHAIN-CLI "1" "March 2020" "sugarchain-cli v0.16.3.30" "User Commands"
.TH SUGARCHAIN-CLI "1" "June 2020" "sugarchain-cli v0.16.3.34" "User Commands"
.SH NAME
sugarchain-cli \- manual page for sugarchain-cli v0.16.3.30
sugarchain-cli \- manual page for sugarchain-cli v0.16.3.34
.SH DESCRIPTION
Sugarchain Yumekawa RPC client version v0.16.3.30
Sugarchain Yumekawa RPC client version v0.16.3.34
.SS "Usage:"
.TP
sugarchain\-cli [options] <command> [params]
Expand Down
14 changes: 9 additions & 5 deletions doc/man/sugarchain-qt.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
.TH SUGARCHAIN-QT "1" "March 2020" "sugarchain-qt v0.16.3.30" "User Commands"
.TH SUGARCHAIN-QT "1" "June 2020" "sugarchain-qt v0.16.3.34" "User Commands"
.SH NAME
sugarchain-qt \- manual page for sugarchain-qt v0.16.3.30
sugarchain-qt \- manual page for sugarchain-qt v0.16.3.34
.SH DESCRIPTION
Sugarchain Yumekawa version v0.16.3.30 (64\-bit)
Sugarchain Yumekawa version v0.16.3.34 (64\-bit)
Usage:
.IP
sugarchain\-qt [command\-line options]
Expand Down Expand Up @@ -32,7 +32,7 @@ block hash)
If this block is in the chain assume that it and its ancestors are valid
and potentially skip their script verification (0 to verify all,
default:
56e8f536feb26f749ed9198f56f397da08f018de9518674b2ac12a41061612cb,
9a9c7db86b1a67a399d50f7f45b1d4bbb9179bcf0be08331239a1b9881ebcea9,
testnet:
e87ec8451768ddadc3364b48efdc8f47b79e7723eb69c75ae3e7083bf48985b1)
.HP
Expand Down Expand Up @@ -403,7 +403,7 @@ optional). If <category> is not supplied or if <category> = 1,
output all debugging information. <category> can be: net, tor,
mempool, http, bench, zmq, db, rpc, estimatefee, addrman,
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
libevent, coindb, qt, leveldb, pow.
libevent, coindb, qt, leveldb.
.HP
\fB\-debugexclude=\fR<category>
.IP
Expand Down Expand Up @@ -433,6 +433,10 @@ transactions (default: 0.10)
.IP
Send trace/debug info to console instead of debug.log file
.HP
\fB\-prunedebuglogfile\fR
.IP
Prune (limit) filesize of debug.log
.HP
\fB\-shrinkdebugfile\fR
.IP
Shrink debug.log file on client startup (default: 1 when no \fB\-debug\fR)
Expand Down
6 changes: 3 additions & 3 deletions doc/man/sugarchain-tx.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
.TH SUGARCHAIN-TX "1" "March 2020" "sugarchain-tx v0.16.3.30" "User Commands"
.TH SUGARCHAIN-TX "1" "June 2020" "sugarchain-tx v0.16.3.34" "User Commands"
.SH NAME
sugarchain-tx \- manual page for sugarchain-tx v0.16.3.30
sugarchain-tx \- manual page for sugarchain-tx v0.16.3.34
.SH DESCRIPTION
Sugarchain Yumekawa sugarchain\-tx utility version v0.16.3.30
Sugarchain Yumekawa sugarchain\-tx utility version v0.16.3.34
.SS "Usage:"
.TP
sugarchain\-tx [options] <hex\-tx> [commands]
Expand Down
14 changes: 9 additions & 5 deletions doc/man/sugarchaind.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3.
.TH SUGARCHAIND "1" "March 2020" "sugarchaind v0.16.3.30" "User Commands"
.TH SUGARCHAIND "1" "June 2020" "sugarchaind v0.16.3.34" "User Commands"
.SH NAME
sugarchaind \- manual page for sugarchaind v0.16.3.30
sugarchaind \- manual page for sugarchaind v0.16.3.34
.SH DESCRIPTION
Sugarchain Yumekawa Daemon version v0.16.3.30
Sugarchain Yumekawa Daemon version v0.16.3.34
.SS "Usage:"
.TP
sugarchaind [options]
Expand Down Expand Up @@ -33,7 +33,7 @@ block hash)
If this block is in the chain assume that it and its ancestors are valid
and potentially skip their script verification (0 to verify all,
default:
56e8f536feb26f749ed9198f56f397da08f018de9518674b2ac12a41061612cb,
9a9c7db86b1a67a399d50f7f45b1d4bbb9179bcf0be08331239a1b9881ebcea9,
testnet:
e87ec8451768ddadc3364b48efdc8f47b79e7723eb69c75ae3e7083bf48985b1)
.HP
Expand Down Expand Up @@ -408,7 +408,7 @@ optional). If <category> is not supplied or if <category> = 1,
output all debugging information. <category> can be: net, tor,
mempool, http, bench, zmq, db, rpc, estimatefee, addrman,
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
libevent, coindb, qt, leveldb, pow.
libevent, coindb, qt, leveldb.
.HP
\fB\-debugexclude=\fR<category>
.IP
Expand Down Expand Up @@ -438,6 +438,10 @@ transactions (default: 0.10)
.IP
Send trace/debug info to console instead of debug.log file
.HP
\fB\-prunedebuglogfile\fR
.IP
Prune (limit) filesize of debug.log
.HP
\fB\-shrinkdebugfile\fR
.IP
Shrink debug.log file on client startup (default: 1 when no \fB\-debug\fR)
Expand Down
Loading

0 comments on commit c4e813b

Please sign in to comment.