dcrd v1.3.0-rc2
This release of dcrd contains significant performance enhancements for startup
speed, validation, and network operations that directly benefit lightweight
clients, such as SPV (Simplified Payment Verification) wallets, a policy change
to reduce the default minimum transaction fee rate, a new public test network
version, removal of bloom filter support, infrastructure improvements, and other
quality assurance changes.
It is highly recommended that everyone upgrade to this latest release as it
contains many important scalability improvements and is required to be able to
use the new public test network.
Downgrade Warning
The database format in v1.3.0 is not compatible with previous versions of the
software. This only affects downgrades as users upgrading from previous
versions will see a one time database migration.
Once this migration has been completed, it will no longer be possible to
downgrade to a previous version of the software without having to delete the
database and redownload the chain.
Notable Changes
Reduction of Default Minimum Transaction Fee Rate Policy
The default setting for the policy which specifies the minimum transaction fee
rate that will be accepted and relayed to the rest of the network has been
reduced to 0.0001 DCR/kB (10,000 atoms/kB) from the previous value of 0.001
DCR/kB (100,000 atoms/kB).
Transactions should not attempt to use the reduced fee rate until the majority
of the network has upgraded to this release as otherwise the transactions will
likely have issues relaying through the network since old nodes that have not
updated their policy will reject them due to not paying a high enough fee.
Several Speed Optimizations
This release contains several enhancements to improve speed for startup,
the initial sync process, validation, and network operations.
In order to achieve these speedups, there is a one time database migration, as
previously mentioned, that typically only takes a few seconds to complete on
most hardware.
Further Improved Startup Speed
The startup time has been improved by roughly 2x on both slower hard disk drives
(HDDs) and solid state drives (SSDs) as compared to v1.2.0.
Significantly Faster Network Operations
The ability to serve information to other peers on the network has received
several optimizations which, in addition to generally improving the overall
scalability and throughput of the network, also directly benefits SPV
(Simplified Payment Verification) clients by delivering the block headers they
require roughly 3x to 4x faster.
Signature Hash Calculation Optimization
Part of validating that transactions are only spending coins that the owner has
authorized involves ensuring the validity of cryptographic signatures. This
release provides a speedup of about 75% to a key portion of that validation
which results in a roughly 20% faster initial sync process.
Bloom Filters Removal
Bloom filters were deprecated as of the last release in favor of the more recent
privacy-preserving GCS committed filters. Consequently, this release removes
support for bloom filters completely. There are no known clients which use
bloom filters, however, if there are any unknown clients which use them, those
clients will need to be updated to use the GCS committed filters accordingly.
Public Test Network Version 3
The public test network has been reset and bumped to version 3. All of the new
consensus rules voted in by version 2 of the public test network have been
retained and are therefore active on the new version 3 test network without
having to vote them in again.
Changelog
All commits since the last release may be viewed on GitHub here.
Protocol and network:
- chaincfg: Add checkpoints for 1.3.0 release (decred/dcrd#1385)
- multi: Remove everything to do about bloom filters (decred/dcrd#1162)
- wire: Remove TxSerializeWitnessSigning (decred/dcrd#1180)
- addrmgr: Skip low quality addresses for getaddr (decred/dcrd#1135)
- addrmgr: Fix race in save peers (decred/dcrd#1259)
- server: Only respond to getaddr once per conn (decred/dcrd#1257)
- peer: Rework version negotiation (decred/dcrd#1250)
- peer: Allow OnVersion callback to reject peer (decred/dcrd#1251)
- server: Reject outbound conns to non-full nodes (decred/dcrd#1252)
- peer: Improve net address service adverts (decred/dcrd#1253)
- addrmgr: Expose method to update services (decred/dcrd#1254)
- server: Update addrmgr services on outbound conns (decred/dcrd#1254)
- server: Use local inbound var in version handler (decred/dcrd#1255)
- server: Only advertise local addr when current (decred/dcrd#1256)
- server: Use local addr var in version handler (decred/dcrd#1258)
- chaincfg: split params into per-network files (decred/dcrd#1265)
- server: Always reply to getheaders with headers (decred/dcrd#1295)
- addrmgr: skip never-successful addresses (decred/dcrd#1313)
- multi: Introduce default coin type for SLIP0044 (decred/dcrd#1293)
- blockchain: Modify diff redux logic for testnet (decred/dcrd#1387)
- multi: Reset testnet and bump to version 3 (decred/dcrd#1387)
- multi: Remove testnet version 2 defs and refs (decred/dcrd#1387)
Transaction relay (memory pool):
- policy: Lower default relay fee to 0.0001/kB (decred/dcrd#1202)
- mempool: Use blockchain for tx expiry check (decred/dcrd#1199)
- mempool: use secp256k1 functions directly (decred/dcrd#1213)
- mempool: Make expiry pruning self contained (decred/dcrd#1378)
- mempool: Stricter orphan evaluation and eviction (decred/dcrd#1207)
- mempool: use secp256k1 functions directly (decred/dcrd#1213)
- multi: add specialized rebroadcast handling for stake txs (decred/dcrd#979)
- mempool: Make expiry pruning self contained (decred/dcrd#1378)
RPC:
- rpcserver: Improve JSON-RPC compatibility (decred/dcrd#1150)
- rpcserver: Correct rebroadcastwinners handler (decred/dcrd#1234)
- dcrjson: Add Expiry field to CreateRawTransactionCmd (decred/dcrd#1149)
- dcrjson: add estimatesmartfee (decred/dcrd#1201)
- rpc: Use upstream gorilla/websocket (decred/dcrd#1218)
- dcrjson: add createvotingaccount and dropvotingaccount rpc methods (decred/dcrd#1217)
- multi: Change NoSplitTransaction param to SplitTx (decred/dcrd#1231)
- rpcclient: pass default value for NewPurchaseTicketCmd's comment param (decred/dcrd#1232)
- multi: No winning ticket ntfns for big reorg depth (decred/dcrd#1235)
- multi: modify PurchaseTicketCmd (decred/dcrd#1241)
- multi: move extension commands into associated normal command files (decred/dcrd#1238)
- dcrjson: Fix NewCreateRawTransactionCmd comment (decred/dcrd#1262)
- multi: revert TicketChange addition to PurchaseTicketCmd (decred/dcrd#1278)
- rpcclient: Implement fmt.Stringer for Client (decred/dcrd#1298)
- multi: add amount field to TransactionInput (decred/dcrd#1297)
- dcrjson: Ready GetStakeInfoResult for SPV wallets (decred/dcrd#1333)
- dcrjson: add fundrawtransaction command (decred/dcrd#1316)
- dcrjson: Make linter happy by renaming Id to ID (decred/dcrd#1374)
- dcrjson: Remove unused vote bit concat codec funcs (decred/dcrd#1384)
- rpcserver: Cleanup cfilter handling (decred/dcrd#1398)
dcrd command-line flags and configuration:
- multi: Correct clean and expand path handling (decred/dcrd#1186)
dcrctl utility changes:
- dcrctl: Fix --skipverify failing if rpc.cert not found (decred/dcrd#1163)
Documentation:
- hdkeychain: Correct hash algorithm in comment (decred/dcrd#1171)
- Fix typo in blockchain (decred/dcrd#1185)
- docs: Update node.js example for v8.11.1 LTS (decred/dcrd#1209)
- docs: Update txaccepted method in json_rpc_api.md (decred/dcrd#1242)
- docs: Correct blockmaxsize and blockprioritysize (decred/dcrd#1339)
- server: Correct comment in getblocks handler (decred/dcrd#1269)
- config: Fix typo (decred/dcrd#1274)
- multi: Fix badges in README (decred/dcrd#1277)
- stake: Correct comment in connectNode (decred/dcrd#1325)
- txscript: Update comments for removal of flags (decred/dcrd#1336)
- docs: Update docs for versioned modules (decred/dcrd#1391)
- mempool: Correct min relay tx fee comment to DCR (decred/dcrd#1396)
Developer-related package and module changes:
- blockchain: CheckConnectBlockTemplate with tests (decred/dcrd#1086)
- addrmgr: Simplify package API (decred/dcrd#1136)
- txscript: Remove unused strict multisig flag (decred/dcrd#1203)
- txscript: Move sig hash logic to separate file (decred/dcrd#1174)
- txscript: Remove SigHashAllValue (decred/dcrd#1175)
- txscript: Decouple and optimize sighash calc (decred/dcrd#1179)
- wire: Remove TxSerializeWitnessValueSigning (decred/dcrd#1176)
- hdkeychain: Satisfy fmt.Stringer interface (decred/dcrd#1168)
- blockchain: Validate tx expiry in block context (decred/dcrd#1187)
- blockchain: rename ErrRegTxSpendStakeOut to ErrRegTxCreateStakeOut (decred/dcrd#1195)
- multi: Break coinbase dep on standardness rules (decred/dcrd#1196)
- txscript: Cleanup code for the substr opcode (decred/dcrd#1206)
- multi: use secp256k1 types and fields directly (decred/dcrd#1211)
- dcrec: add Pubkey func to secp256k1 and edwards elliptic curves (decred/dcrd#1214)
- blockchain: use secp256k1 functions directly (decred/dcrd#1212)
- multi: Replace btclog with slog (decred/dcrd#1216)
- multi: Define vgo modules (decred/dcrd#1223)
- chainhash: Define vgo module (decred/dcrd#1224)
- wire: Refine vgo deps (decred/dcrd#1225)
- addrmrg: Refine vgo deps (decred/dcrd#1226)
- chaincfg: Refine vgo deps (decred/dcrd#1227)
- multi: Return fork len from ProcessBlock (decred/dcrd#1233)
- blockchain: Panic on fatal assertions (decred/dcrd#1243)
- blockchain: Convert to full block index in mem (decred/dcrd#1229)
- blockchain: Optimize checkpoint handling (decred/dcrd#1230)
- blockchain: Optimize block locator generation (decred/dcrd#1237)
- multi: Refactor and optimize inv discovery (decred/dcrd#1239)
- peer: Minor function definition order cleanup (decred/dcrd#1247)
- peer: Remove superfluous dup version check (decred/dcrd#1248)
- txscript: export canonicalDataSize (decred/dcrd#1266)
- blockchain: Add BuildMerkleTreeStore alternative for MsgTx (decred/dcrd#1268)
- blockchain: Optimize exported header access (decred/dcrd#1273)
- txscript: Cleanup P2SH and stake opcode handling (decred/dcrd#1318)
- txscript: Significantly improve errors (decred/dcrd#1319)
- txscript: Remove pay-to-script-hash flag (decred/dcrd#1321)
- txscript: Remove DER signature verification flag (decred/dcrd#1323)
- txscript: Remove verify minimal data flag (decred/dcrd#1326)
- txscript: Remove script num require minimal flag (decred/dcrd#1328)
- txscript: Make PeekInt consistent with PopInt (decred/dcrd#1329)
- build: Add experimental support for vgo (decred/dcrd#1215)
- build: Update some vgo dependencies to use tags (decred/dcrd#1219)
- stake: add ExpiredByBlock to stake.Node (decred/dcrd#1221)
- server: Minor function definition order cleanup (decred/dcrd#1271)
- server: Convert CF code to use new inv discovery (decred/dcrd#1272)
- multi: add valueIn parameter to wire.NewTxIn (decred/dcrd#1287)
- txscript: Remove low S verification flag (decred/dcrd#1308)
- txscript: Remove unused old sig hash type (decred/dcrd#1309)
- txscript: Remove strict encoding verification flag (decred/dcrd#1310)
- blockchain: Combine block by hash functions (decred/dcrd#1330)
- multi: Continue conversion from chainec to dcrec (decred/dcrd#1304)
- multi: Remove unused secp256k1 sig parse parameter (decred/dcrd#1335)
- blockchain: Refactor db main chain idx to blk idx (decred/dcrd#1332)
- blockchain: Remove main chain index from db (decred/dcrd#1334)
- blockchain: Implement new chain view (decred/dcrd#1337)
- blockmanager: remove unused Pause() API (decred/dcrd#1340)
- chainhash: Remove dup code from hash funcs (decred/dcrd#1342)
- connmgr: Fix the ConnReq print out causing panic (decred/dcrd#1345)
- gcs: Pool MatchAny data allocations (decred/dcrd#1348)
- blockchain: Faster chain view block locator (decred/dcrd#1338)
- blockchain: Refactor to use new chain view (decred/dcrd#1344)
- blockchain: Remove unnecessary genesis block check (decred/dcrd#1368)
- chainhash: Update go build module support (decred/dcrd#1358)
- wire: Update go build module support (decred/dcrd#1359)
- addrmgr: Update go build module support (decred/dcrd#1360)
- chaincfg: Update go build module support (decred/dcrd#1361)
- connmgr: Refine go build module support (decred/dcrd#1363)
- secp256k1: Refine go build module support (decred/dcrd#1362)
- dcrec: Refine go build module support (decred/dcrd#1364)
- certgen: Update go build module support (decred/dcrd#1365)
- dcrutil: Refine go build module support (decred/dcrd#1366)
- hdkeychain: Refine go build module support (decred/dcrd#1369)
- txscript: Refine go build module support (decred/dcrd#1370)
- multi: Remove go modules that do not build (decred/dcrd#1371)
- database: Refine go build module support (decred/dcrd#1372)
- build: Refine build module support (decred/dcrd#1384)
- blockmanager: make pruning transactions consistent (decred/dcrd#1376)
- blockchain: Optimize reorg to use known status (decred/dcrd#1367)
- blockchain: Make block index flushable (decred/dcrd#1375)
- blockchain: Mark fastadd block valid (decred/dcrd#1392)
- release: Bump module versions and deps (decred/dcrd#1390)
- blockchain: Mark fastadd block valid (decred/dcrd#1392)
- gcs: use dchest/siphash (decred/dcrd#1395)
- dcrec: Make function defs more consistent (decred/dcrd#1432)
Testing and Quality Assurance:
- addrmgr: Simplify tests for KnownAddress (decred/dcrd#1133)
- blockchain: move block validation rule tests into fullblocktests (decred/dcrd#1141)
- addrmgr: Test timestamp update during AddAddress (decred/dcrd#1137)
- txscript: Consolidate tests into txscript package (decred/dcrd#1177)
- txscript: Add JSON-based signature hash tests (decred/dcrd#1178)
- txscript: Correct JSON-based signature hash tests (decred/dcrd#1181)
- txscript: Add benchmark for sighash calculation (decred/dcrd#1179)
- mempool: Refactor pool membership test logic (decred/dcrd#1188)
- blockchain: utilize CalcNextReqStakeDifficulty in fullblocktests (decred/dcrd#1189)
- fullblocktests: add additional premine and malformed tests (decred/dcrd#1190)
- txscript: Improve substr opcode test coverage (decred/dcrd#1205)
- txscript: Convert reference tests to new format (decred/dcrd#1320)
- txscript: Remove P2SH flag from test data (decred/dcrd#1322)
- txscript: Remove DERSIG flag from test data (decred/dcrd#1324)
- txscript: Remove MINIMALDATA flag from test data (decred/dcrd#1327)
- fullblocktests: Add expired stake tx test (decred/dcrd#1184)
- travis: simplify Docker files (decred/dcrd#1275)
- docker: Add dockerfiles for running dcrd nodes (decred/dcrd#1317)
- blockchain: Improve spend journal tests (decred/dcrd#1246)
- txscript: Cleanup and add tests for left opcode (decred/dcrd#1281)
- txscript: Cleanup and add tests for right opcode (decred/dcrd#1282)
- txscript: Cleanup and add tests for the cat opcode (decred/dcrd#1283)
- txscript: Cleanup and add tests for rotr opcode (decred/dcrd#1285)
- txscript: Cleanup and add tests for rotl opcode (decred/dcrd#1286)
- txscript: Cleanup and add tests for lshift opcode (decred/dcrd#1288)
- txscript: Cleanup and add tests for rshift opcode (decred/dcrd#1289)
- txscript: Cleanup and add tests for div opcode (decred/dcrd#1290)
- txscript: Cleanup and add tests for mod opcode (decred/dcrd#1291)
- txscript: Update CSV to match tests in DCP0003 (decred/dcrd#1292)
- txscript: Introduce repeated syntax to test data (decred/dcrd#1299)
- txscript: Allow multi opcode test data repeat (decred/dcrd#1300)
- txscript: Improve and correct some script tests (decred/dcrd#1303)
- main: verify network pow limits (decred/dcrd#1302)
- txscript: Remove STRICTENC flag from test data (decred/dcrd#1311)
- txscript: Cleanup plus tests for checksig opcodes (decred/dcrd#1315)
- blockchain: Add negative tests for forced reorg (decred/dcrd#1341)
- dcrjson: Consolidate tests into dcrjson package (decred/dcrd#1373)
- txscript: add additional data push op code tests (decred/dcrd#1346)
- txscript: add/group control op code tests (decred/dcrd#1349)
- txscript: add/group stack op code tests (decred/dcrd#1350)
- txscript: group splice opcode tests (decred/dcrd#1351)
- txscript: add/group bitwise logic, comparison & rotation op code tests (decred/dcrd#1352)
- txscript: add/group numeric related opcode tests (decred/dcrd#1353)
- txscript: group reserved op code tests (decred/dcrd#1355)
- txscript: add/group crypto related op code tests (decred/dcrd#1354)
- multi: Reduce testnet2 refs in unit tests (decred/dcrd#1387)
Misc:
- release: Bump for v1.3.0 (decred/dcrd#1388)
- multi: Correct typos found by misspell (decred/dcrd#1197)
- main: Correct mem profile error message (decred/dcrd#1183)
- multi: Use saner permissions saving certs (decred/dcrd#1263)
- server: only call time.Now() once (decred/dcrd#1313)
- multi: linter cleanup (decred/dcrd#1305)
- multi: Remove unnecessary network name funcs (decred/dcrd#1387)
- config: Warn if testnet2 database exists (decred/dcrd#1389)
Code Contributors (alphabetical order):
- Dave Collins
- David Hill
- Dmitry Fedorov
- Donald Adu-Poku
- harzo
- hypernoob
- J Fixby
- Jonathan Chappelow
- Josh Rickmar
- Markus Richter
- matadormel
- Matheus Degiovani
- Michael Eze
- Orthomind
- Shuai Qi
- Tibor Bősze
- Victor Oliveira