mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
Minor documentation updates
This commit is contained in:
parent
91c218a1cb
commit
aeea5e2a2d
@ -28,10 +28,6 @@ outgoing connections be anonimized, but more is possible.
|
|||||||
need to set this if it's the same as -proxy. You can use -notor
|
need to set this if it's the same as -proxy. You can use -notor
|
||||||
to explicitly disable access to hidden service.
|
to explicitly disable access to hidden service.
|
||||||
|
|
||||||
-dnsseed DNS seeds are not resolved directly when a SOCKS5 proxy server is
|
|
||||||
set. Rather, a short-lived proxy connection to the dns seed
|
|
||||||
hostname is attempted, and peer addresses are requested.
|
|
||||||
|
|
||||||
-listen When using -proxy, listening is disabled by default. If you want
|
-listen When using -proxy, listening is disabled by default. If you want
|
||||||
to run a hidden service (see next section), you'll need to enable
|
to run a hidden service (see next section), you'll need to enable
|
||||||
it explicitly.
|
it explicitly.
|
||||||
|
@ -44,7 +44,7 @@ bn CBigNum
|
|||||||
Locking/mutex usage notes
|
Locking/mutex usage notes
|
||||||
|
|
||||||
The code is multi-threaded, and uses mutexes and the
|
The code is multi-threaded, and uses mutexes and the
|
||||||
CRITICAL_BLOCK/TRY_CRITICAL_BLOCK macros to protect data structures.
|
LOCK/TRY_LOCK macros to protect data structures.
|
||||||
|
|
||||||
Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main
|
Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main
|
||||||
and then cs_wallet, while thread 2 locks them in the opposite order:
|
and then cs_wallet, while thread 2 locks them in the opposite order:
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
(note: this is a temporary file, to be added-to by anybody, and deleted at
|
(note: this is a temporary file, to be added-to by anybody, and deleted at
|
||||||
release time)
|
release time)
|
||||||
|
|
||||||
@ -6,7 +5,25 @@ Building this from
|
|||||||
|
|
||||||
$ git shortlog --no-merges v0.6.3..
|
$ git shortlog --no-merges v0.6.3..
|
||||||
|
|
||||||
|
How to Upgrade
|
||||||
|
--------------
|
||||||
|
|
||||||
|
If you are running an older version, shut it down. Wait
|
||||||
|
until it has completely shut down (which might take a few minutes for older
|
||||||
|
versions), then run the installer (on Windows) or just copy over
|
||||||
|
/Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).
|
||||||
|
|
||||||
|
If you were running on Linux with a version that might have been compiled
|
||||||
|
with a different version of Berkeley DB (for example, if you were using an
|
||||||
|
Ubuntu PPA version), then run the old version again with the -detachdb
|
||||||
|
argument and shut it down; if you do not, then the new version will not
|
||||||
|
be able to read the database files and will exit with an error.
|
||||||
|
|
||||||
|
Incompatible Changes
|
||||||
|
--------------------
|
||||||
|
* Replaced the 'getmemorypool' RPC command with 'getblocktemplate/submitblock'
|
||||||
|
and 'getrawmempool' commands.
|
||||||
|
* Remove deprecated RPC 'getblocknumber'
|
||||||
|
|
||||||
Bitcoin Improvement Proposals implemented
|
Bitcoin Improvement Proposals implemented
|
||||||
-----------------------------------------
|
-----------------------------------------
|
||||||
@ -24,7 +41,8 @@ Core bitcoin handling and blockchain database
|
|||||||
* Database: better validation of on-disk stored data
|
* Database: better validation of on-disk stored data
|
||||||
* Database: minor optimizations and reliability improvements
|
* Database: minor optimizations and reliability improvements
|
||||||
* -loadblock=FILE will import an external block file
|
* -loadblock=FILE will import an external block file
|
||||||
* Additional DoS prevention measures
|
* Additional DoS (denial-of-service) prevention measures
|
||||||
|
* New blockchain checkpoint at block 193,000
|
||||||
|
|
||||||
|
|
||||||
JSON-RPC API
|
JSON-RPC API
|
||||||
@ -44,7 +62,6 @@ JSON-RPC API
|
|||||||
non-wallet TXs now.
|
non-wallet TXs now.
|
||||||
* Remove deprecated RPC 'getblocknumber'
|
* Remove deprecated RPC 'getblocknumber'
|
||||||
* Remove superceded RPC 'getmemorypool' (see BIP 22, above)
|
* Remove superceded RPC 'getmemorypool' (see BIP 22, above)
|
||||||
* New blockchain checkpoint at block 193,000
|
|
||||||
* listtransactions output now displays "smart" times for transactions,
|
* listtransactions output now displays "smart" times for transactions,
|
||||||
and 'blocktime' and 'timereceived' fields were added
|
and 'blocktime' and 'timereceived' fields were added
|
||||||
|
|
||||||
@ -52,7 +69,7 @@ JSON-RPC API
|
|||||||
P2P networking
|
P2P networking
|
||||||
--------------
|
--------------
|
||||||
* IPv6 support
|
* IPv6 support
|
||||||
* Tor hidden service support
|
* Tor hidden service support (see doc/Tor.txt)
|
||||||
* Attempts to fix "stuck blockchain download" problems
|
* Attempts to fix "stuck blockchain download" problems
|
||||||
* Replace BDB database "addr.dat" with internally-managed "peers.dat"
|
* Replace BDB database "addr.dat" with internally-managed "peers.dat"
|
||||||
file containing peer address data.
|
file containing peer address data.
|
||||||
|
Loading…
Reference in New Issue
Block a user