Skip to content

Instantly share code, notes, and snippets.

@laanwj
Last active October 3, 2018 12:51
Show Gist options
  • Save laanwj/a9106487fb3e37a0170b7b828f0236c9 to your computer and use it in GitHub Desktop.
Save laanwj/a9106487fb3e37a0170b7b828f0236c9 to your computer and use it in GitHub Desktop.
Difference between Bitcoin Core 0.16 and 0.17.0 options
aurora:~/projects/bitcoin$ bitcoin-0.16/build/src/bitcoind --help --help-debug|grep "^ -" | sort > /tmp/options-0.16.txt
aurora:~/projects/bitcoin$ bitcoin-0.17/build/src/bitcoind --help --help-debug|grep "^ -" | sort > /tmp/options-0.17.txt
aurora:~/projects/bitcoin$ diff -du /tmp/options-0.16.txt /tmp/options-0.17.txt
--- /tmp/options-0.16.txt 2018-10-03 14:35:57.661688575 +0200
+++ /tmp/options-0.17.txt 2018-10-03 14:36:03.789664725 +0200
@@ -2,8 +2,10 @@
-acceptnonstdtxn
-addnode=<ip>
-addresstype
+ -addrmantest
-alertnotify=<cmd>
-assumevalid=<hex>
+ -avoidpartialspends
-banscore=<n>
-bantime=<n>
-bind=<addr>
@@ -11,6 +13,7 @@
-blockmintxfee=<amt>
-blocknotify=<cmd>
-blockreconstructionextratxn=<n>
+ -blocksdir=<dir>
-blocksonly
-blockversion=<n>
-bytespersigop
@@ -33,7 +36,6 @@
-debugexclude=<category>
-debuglogfile=<file>
-deprecatedrpc=<method>
- -disablesafemode
-disablewallet
-discardfee=<amt>
-discover
@@ -41,13 +43,14 @@
-dnsseed
-dropmessagestest=<n>
-dustrelayfee=<amt>
+ -enablebip61
-externalip=<ip>
-fallbackfee=<amt>
-feefilter
-flushwallet
-forcednsseed
- -fuzzmessagestest=<n>
-help-debug
+ -includeconf=<file>
-incrementalrelayfee=<amt>
-keypool=<n>
-limitancestorcount=<n>
@@ -116,7 +119,6 @@
-stopatheight
-sysperms
-testnet
- -testsafemode
-timeout=<n>
-torcontrol=<ip>:<port>
-torpassword=<pass>
@@ -129,8 +131,8 @@
-version
-walletbroadcast
-walletdir=<dir>
- -wallet=<file>
-walletnotify=<cmd>
+ -wallet=<path>
-walletrbf
-walletrejectlongchains
-whitebind=<addr>
aurora:~/projects/bitcoin$ bitcoin-0.16/build/src/bitcoind --help|grep "^ -" | sort > /tmp/options-0.16.txt
aurora:~/projects/bitcoin$ bitcoin-0.17/build/src/bitcoind --help|grep "^ -" | sort > /tmp/options-0.17.txt
aurora:~/projects/bitcoin$ diff -du /tmp/options-0.16.txt /tmp/options-0.17.txt
--- /tmp/options-0.16.txt 2018-10-03 14:29:40.451188476 +0200
+++ /tmp/options-0.17.txt 2018-10-03 14:29:48.559155398 +0200
@@ -3,6 +3,7 @@
-addresstype
-alertnotify=<cmd>
-assumevalid=<hex>
+ -avoidpartialspends
-banscore=<n>
-bantime=<n>
-bind=<addr>
@@ -10,6 +11,7 @@
-blockmintxfee=<amt>
-blocknotify=<cmd>
-blockreconstructionextratxn=<n>
+ -blocksdir=<dir>
-bytespersigop
-changetype
-conf=<file>
@@ -27,10 +29,12 @@
-discover
-dns
-dnsseed
+ -enablebip61
-externalip=<ip>
-fallbackfee=<amt>
-forcednsseed
-help-debug
+ -includeconf=<file>
-keypool=<n>
-listen
-listenonion
@@ -93,8 +97,8 @@
-version
-walletbroadcast
-walletdir=<dir>
- -wallet=<file>
-walletnotify=<cmd>
+ -wallet=<path>
-walletrbf
-whitebind=<addr>
-whitelistforcerelay
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment