dogecoin/doc/release-notes.md

178 lines
5.7 KiB
Markdown
Raw Normal View History

Dogecoin Core version 1.14.4 is now available from:
estimatefee / estimatepriority RPC methods New RPC methods: return an estimate of the fee (or priority) a transaction needs to be likely to confirm in a given number of blocks. Mike Hearn created the first version of this method for estimating fees. It works as follows: For transactions that took 1 to N (I picked N=25) blocks to confirm, keep N buckets with at most 100 entries in each recording the fees-per-kilobyte paid by those transactions. (separate buckets are kept for transactions that confirmed because they are high-priority) The buckets are filled as blocks are found, and are saved/restored in a new fee_estiamtes.dat file in the data directory. A few variations on Mike's initial scheme: To estimate the fee needed for a transaction to confirm in X buckets, all of the samples in all of the buckets are used and a median of all of the data is used to make the estimate. For example, imagine 25 buckets each containing the full 100 entries. Those 2,500 samples are sorted, and the estimate of the fee needed to confirm in the very next block is the 50'th-highest-fee-entry in that sorted list; the estimate of the fee needed to confirm in the next two blocks is the 150'th-highest-fee-entry, etc. That algorithm has the nice property that estimates of how much fee you need to pay to get confirmed in block N will always be greater than or equal to the estimate for block N+1. It would clearly be wrong to say "pay 11 uBTC and you'll get confirmed in 3 blocks, but pay 12 uBTC and it will take LONGER". A single block will not contribute more than 10 entries to any one bucket, so a single miner and a large block cannot overwhelm the estimates.
2014-03-17 13:19:54 +01:00
<https://github.com/dogecoin/dogecoin/releases/tag/v1.14.4/>
This is a new minor version release, including various bugfixes and performance improvements. It is a recommended
update for all users.
Please report bugs using the issue tracker at github:
<https://github.com/dogecoin/dogecoin/issues>
To receive security and update notifications, please watch reddit or Twitter:
* https://www.reddit.com/r/dogecoin/
* @Dogecoin on Twitter for high priority announcements
* @dogecoin\_devs on Twitter for updates on development work
The developers also maintain personal Twitter accounts:
* @langer\_hans
* @JRossNicoll
* @michilumin
Compatibility
==============
Dogecoin Core is extensively tested on Ubuntu Server LTS, Mac OS X and Windows 10.
Dogecoin Core should also work on most other Unix-like systems but is not
frequently tested on them.
2015-05-26 21:32:25 +02:00
Notable changes
===============
2021-08-20 05:30:35 +02:00
Enabling Future Fee Reductions
-------------------------------
This release preparing the network for a reduction of the recommended fees by
reducing the default fee requirement 1000x for transaction relay and 100x for
mining. At the same time it increases freedom for miner, wallet and node
operators to agree on fees regardless of defaults coded into the Dogecoin Core
software by solidifying fine-grained controls for operators to deviate from
built-in defaults.
This realizes the first part of a two-stage update to lower the fee
recommendation.
The main highlights for these enhancements are:
* Transaction sizes are no longer rounded up to the nearest kilobyte when
deciding if a transaction can be accepted from another node and in applying
fee-filter requests from peers, when relaying transactions.
* The default setting shipped with dogecoin core for relay fee has been reduced
to 0.001 DOGE (was: 1 DOGE). This can be changed by operators using the
`-mintxrelayfee=<amount>` option.
* Spam management has been delegated to miners, where currently a default fee
of 0.01 DOGE has been set as a recommended default, to prevent spam on the
blockchain. Miners can change this setting to their liking using the
`-blockmintxfee` option.
* The relay dust limit has been reduced 100x to 0.01 DOGE and is now
configurable via the `-dustlimit` option.
For this release, the recommended fees and dust limits, as implemented in the
wallet, remain at 1 DOGE per kilobyte, inclusive of the rounding up to the
nearest kilobyte, as miners and the relay network will upgrade gradually,
requiring time for transactions with lower fees to be able to be relayed and
mined. Not doing this would result in all transactions being rejected by old
nodes. A subsequent release will finalize the second stage and lower the
recommended fees implemented in the wallet by default. Wallet operators can
however, at their own judgement and convenience, change the fees paid from
their wallets with the `-paytxfee=<amount per kb>` option.
Synchronization Improvements
----------------------------
This release removes a bug in the network layer where a 1.14 node would open
many parallel requests for headers to its peers, increasing the total data
transferred during initial block download up to 50 times the required data, per
peer, unnecessarily. As a result, synchronization has time has been reduced by
around 2.5 times.
Additionally, when a node is in initial synchronization and a peer takes too
long to respond to a new header request, it is now aggressively disconnected,
to free connection slots for faster peers and not add more stress to already
overloaded peers.
Security enhancements
---------------------
* Proactively disconnect peers sending block headers which would build on an
invalid chain.
* Improve handling and logging of invalid blocks and their descendants
* Fix a bug that was preventing nodes to load a fixed peer list in case DNS
services are unreachable.
GUI Improvements
----------------
2021-08-20 06:11:42 +02:00
* Add menu option to import a private key, "Import Private Key" from the "File"
menu.
* Improve displayed result when commands in the debug console return null.
2021-08-20 06:11:42 +02:00
* Fix text overflow on printed keys and address fields in the paper wallet
generator.
* Add column to peers table showing bytes sent/received, accessible via
"Debug Window" from the "Help" menu.
* Add GUI for adding peers manually, accessible from the peers table of the
Debug Window.
2017-06-05 08:43:34 +02:00
RPC Improvements
----------------
2017-06-05 08:43:34 +02:00
`getpeerinfo` now includes `feefilter` value for each peer, to be able to diagnose transaction relay issues.
2017-06-05 08:43:34 +02:00
Minor Changes
=============
2017-06-05 08:43:34 +02:00
* Corrections to French Canadian, Chinese, German, Indonesian, Korean, Polish and Portuguese translations.
* Correct a bug that resulted in negative progress per hour being displayed during sync.
* Regtest network can now generate AuxPoW blocks.
* Add Snap packaging support.
* Modify Scrypt code so it's compatible with Alpine Linux's musl library.
* Update libevent to 2.1.11
* Update ZMQ to 4.3.4
* Add build instructions for NixOS.
* Fix a rare crash bug on shutdown due to ActivateBestChain() being called when there is no best chain.
* Fix port numbers in `contrib/seeds/generate-seeds.py`.
Credits
=======
* Ahmed Castro
* Alan Rudolf
* cg
* chey
* chromatic
* Cory Fields
* creekhu
* Dakoda Greaves
* David Millard
* Demon
* Dídac Coll Pujals
* Escanor Liones
* fanquake
* Florian Schade
* fmhc
* Gabriel Gosselin Roberge
* Gabriel Pérez
* geekwisdom
* Ikko Ashimine
* Jeroen Ooms
* Jerry Park
* Joakim Taule Kartveit
* katzenmalen
* Khakim Hudaya
* kregerl
* lee5378
* lynklody
* Malta Micael
* Matheus Tavares
* Matt Domko
* Maximilian Keller
* MD Islam
* Mich De L'Orme
* Michi Lumin
* motz0815
* nformant
* Patrick Lodder
* Piotr Zajączkowski
* p-j01
* rht
* Ross Nicoll
* sabotagebeats
* Shafil Alam
* stefanwouldgo
* Will
* xt3r
* Zach Latta