Decred

Latest version: v0.1.0

Safety actively analyzes 630390 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 7

0.4.0

2016-09-06

This upgrades dcrinstall to default to the current release of the dcr
tools.

For instructions on how to verify the dcrinstall binary, please see
[README.md](./README.md).

0.2.0

This update has brought dcrlnd synced to the [v0.8.0-beta](https://github.com/lightningnetwork/lnd/releases/tag/v0.8.0-beta) of upstream lnd.

Most upstream work that was done since our original branching point in January 2019 was merged and Decred-specific work has been done to enable more seamless integration of dcrlnd to Decrediton.

Decred's LN network is still only in its begining stages, therefore please use caution when comitting funds to it.

Network Reset & Backwards Incompatible Change

Those running v0.1.0 or other versions built from code, please note that v0.2.0 has a **network-wide breaking change**. [PR46](https://github.com/decred/dcrlnd/pull/46) changed the algorithm used to encode payment requests from the Decred-default of Blake256 to the Bicoin-compatible SHA-256.

This means v0.1.0 nodes cannot use channels with v0.2.0 nodes. and will fail and force-close on the first attempt of payment.

Given the v0.1.0 network was still very small we decided to not implement signalling and backwards compatible changes to simplify implementation. Anyone still running the old version **MUST UPGRADE** their node.

Notable Changes

- Support for remote dcrwallets which is used in Decrediton integration [decred/dcrlnd40](https://github.com/decred/dcrlnd/pull/40)

- Switch payment hash algorithm to SHA-256 [decred/dcrlnd46](https://github.com/decred/dcrlnd/pull/46)

- Remove the need to connect to a dcrd running with `--txindex` [decred/dcrlnd41](https://github.com/decred/dcrlnd/pull/41)

Notable Upstream Changes

[PR36](https://github.com/decred/dcrlnd/pull/36) and [PR42](https://github.com/decred/dcrlnd/pull/42) are the ones that port the upstream work. Some notable upstream changes brought include the following.

- Safu Commitments, which was an LN-wide protocol change enabling wallets to retrieve their local channel balance stored in unilaterally-closed channels without requiring coordination with the counterparty.

- Watchtower support, which allows a wallet to remain closed for a longer period of time by offloading the reposability to watch for channel breaches to a third party called a _watchtower_.

- Static Channel Backups which are a race-condition-free way of backing up the channel data required to safely execute the Data Loss Protection protocol if the main database of lnd is lost.

- Hodl invoices which is a way of creating and settling invoices by providing the payment hash/preimage via gRPC and allows bridging the lnd service to more advanced LN-based services such as atomic swaps.

Changelog

All commits since the last release may be viewed on GitHub
[here](https://github.com/decred/dcrlnd/compare/v0.1.0...v0.2.0-rc2).

0.2.0rc1

This update has brought dcrlnd synced to the [v0.8.0-beta](https://github.com/lightningnetwork/lnd/releases/tag/v0.8.0-beta) of upstream lnd.

Most upstream work that was done since our original branching point in January 2019 was merged and Decred-specific work has been done to enable more seamless integration of dcrlnd to Decrediton.

Decred's LN network is still only in its begining stages, therefore please use caution when comitting funds to it.

Network Reset & Backwards Incompatible Change

Those running v0.1.0 or other versions built from code, please note that v0.2.0 has a **network-wide breaking change**. [PR46](https://github.com/decred/dcrlnd/pull/46) changed the algorithm used to encode payment requests from the Decred-default of Blake256 to the Bicoin-compatible SHA-256.

This means v0.1.0 nodes cannot use channels with v0.2.0 nodes. and will fail and force-close on the first attempt of payment.

Given the v0.1.0 network was still very small we decided to not implement signalling and backwards compatible changes to simplify implementation. Anyone still running the old version **MUST UPGRADE** their node.

Notable Changes

- Support for remote dcrwallets which is used in Decrediton integration [decred/dcrlnd40](https://github.com/decred/dcrlnd/pull/40)

- Switch payment hash algorithm to SHA-256 [decred/dcrlnd46](https://github.com/decred/dcrlnd/pull/46)

- Remove the need to connect to a dcrd running with `--txindex` [decred/dcrlnd41](https://github.com/decred/dcrlnd/pull/41)

Notable Upstream Changes

[PR36](https://github.com/decred/dcrlnd/pull/36) and [PR42](https://github.com/decred/dcrlnd/pull/42) are the ones that port the upstream work. Some notable upstream changes brought include the following.

- Safu Commitments, which was an LN-wide protocol change enabling wallets to retrieve their local channel balance stored in unilaterally-closed channels without requiring coordination with the counterparty.

- Watchtower support, which allows a wallet to remain closed for a longer period of time by offloading the reposability to watch for channel breaches to a third party called a _watchtower_.

- Static Channel Backups which are a race-condition-free way of backing up the channel data required to safely execute the Data Loss Protection protocol if the main database of lnd is lost.

- Hodl invoices which is a way of creating and settling invoices by providing the payment hash/preimage via gRPC and allows bridging the lnd service to more advanced LN-based services such as atomic swaps.

Changelog

All commits since the last release may be viewed on GitHub
[here](https://github.com/decred/dcrlnd/compare/v0.1.0...v0.2.0-rc1).

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](https://github.com/decred/dcrd/compare/release-v1.2.0...release-v1.3.0-rc1).

Protocol and network:

- chaincfg: Add checkpoints for 1.3.0 release ([decred/dcrd1385](https://github.com/decred/dcrd/pull/1385))
- multi: Remove everything to do about bloom filters ([decred/dcrd1162](https://github.com/decred/dcrd/pull/1162))
- wire: Remove TxSerializeWitnessSigning ([decred/dcrd1180](https://github.com/decred/dcrd/pull/1180))
- addrmgr: Skip low quality addresses for getaddr ([decred/dcrd1135](https://github.com/decred/dcrd/pull/1135))
- addrmgr: Fix race in save peers ([decred/dcrd1259](https://github.com/decred/dcrd/pull/1259))
- server: Only respond to getaddr once per conn ([decred/dcrd1257](https://github.com/decred/dcrd/pull/1257))
- peer: Rework version negotiation ([decred/dcrd1250](https://github.com/decred/dcrd/pull/1250))
- peer: Allow OnVersion callback to reject peer ([decred/dcrd1251](https://github.com/decred/dcrd/pull/1251))
- server: Reject outbound conns to non-full nodes ([decred/dcrd1252](https://github.com/decred/dcrd/pull/1252))
- peer: Improve net address service adverts ([decred/dcrd1253](https://github.com/decred/dcrd/pull/1253))
- addrmgr: Expose method to update services ([decred/dcrd1254](https://github.com/decred/dcrd/pull/1254))
- server: Update addrmgr services on outbound conns ([decred/dcrd1254](https://github.com/decred/dcrd/pull/1254))
- server: Use local inbound var in version handler ([decred/dcrd1255](https://github.com/decred/dcrd/pull/1255))
- server: Only advertise local addr when current ([decred/dcrd1256](https://github.com/decred/dcrd/pull/1256))
- server: Use local addr var in version handler ([decred/dcrd1258](https://github.com/decred/dcrd/pull/1258))
- chaincfg: split params into per-network files ([decred/dcrd1265](https://github.com/decred/dcrd/pull/1265))
- server: Always reply to getheaders with headers ([decred/dcrd1295](https://github.com/decred/dcrd/pull/1295))
- addrmgr: skip never-successful addresses ([decred/dcrd1313](https://github.com/decred/dcrd/pull/1313))
- multi: Introduce default coin type for SLIP0044 ([decred/dcrd1293](https://github.com/decred/dcrd/pull/1293))
- blockchain: Modify diff redux logic for testnet ([decred/dcrd1387](https://github.com/decred/dcrd/pull/1387))
- multi: Reset testnet and bump to version 3 ([decred/dcrd1387](https://github.com/decred/dcrd/pull/1387))
- multi: Remove testnet version 2 defs and refs ([decred/dcrd1387](https://github.com/decred/dcrd/pull/1387))

Transaction relay (memory pool):

- policy: Lower default relay fee to 0.0001/kB ([decred/dcrd1202](https://github.com/decred/dcrd/pull/1202))
- mempool: Use blockchain for tx expiry check ([decred/dcrd1199](https://github.com/decred/dcrd/pull/1199))
- mempool: use secp256k1 functions directly ([decred/dcrd1213](https://github.com/decred/dcrd/pull/1213))
- mempool: Make expiry pruning self contained ([decred/dcrd1378](https://github.com/decred/dcrd/pull/1378))
- mempool: Stricter orphan evaluation and eviction ([decred/dcrd1207](https://github.com/decred/dcrd/pull/1207))
- mempool: use secp256k1 functions directly ([decred/dcrd1213](https://github.com/decred/dcrd/pull/1213))
- multi: add specialized rebroadcast handling for stake txs ([decred/dcrd979](https://github.com/decred/dcrd/pull/979))
- mempool: Make expiry pruning self contained ([decred/dcrd1378](https://github.com/decred/dcrd/pull/1378))

RPC:

- rpcserver: Improve JSON-RPC compatibility ([decred/dcrd1150](https://github.com/decred/dcrd/pull/1150))
- rpcserver: Correct rebroadcastwinners handler ([decred/dcrd1234](https://github.com/decred/dcrd/pull/1234))
- dcrjson: Add Expiry field to CreateRawTransactionCmd ([decred/dcrd1149](https://github.com/decred/dcrd/pull/1149))
- dcrjson: add estimatesmartfee ([decred/dcrd1201](https://github.com/decred/dcrd/pull/1201))
- rpc: Use upstream gorilla/websocket ([decred/dcrd1218](https://github.com/decred/dcrd/pull/1218))
- dcrjson: add createvotingaccount and dropvotingaccount rpc methods ([decred/dcrd1217](https://github.com/decred/dcrd/pull/1217))
- multi: Change NoSplitTransaction param to SplitTx ([decred/dcrd1231](https://github.com/decred/dcrd/pull/1231))
- rpcclient: pass default value for NewPurchaseTicketCmd's comment param ([decred/dcrd1232](https://github.com/decred/dcrd/pull/1232))
- multi: No winning ticket ntfns for big reorg depth ([decred/dcrd1235](https://github.com/decred/dcrd/pull/1235))
- multi: modify PurchaseTicketCmd ([decred/dcrd1241](https://github.com/decred/dcrd/pull/1241))
- multi: move extension commands into associated normal command files ([decred/dcrd1238](https://github.com/decred/dcrd/pull/1238))
- dcrjson: Fix NewCreateRawTransactionCmd comment ([decred/dcrd1262](https://github.com/decred/dcrd/pull/1262))
- multi: revert TicketChange addition to PurchaseTicketCmd ([decred/dcrd1278](https://github.com/decred/dcrd/pull/1278))
- rpcclient: Implement fmt.Stringer for Client ([decred/dcrd1298](https://github.com/decred/dcrd/pull/1298))
- multi: add amount field to TransactionInput ([decred/dcrd1297](https://github.com/decred/dcrd/pull/1297))
- dcrjson: Ready GetStakeInfoResult for SPV wallets ([decred/dcrd1333](https://github.com/decred/dcrd/pull/1333))
- dcrjson: add fundrawtransaction command ([decred/dcrd1316](https://github.com/decred/dcrd/pull/1316))
- dcrjson: Make linter happy by renaming Id to ID ([decred/dcrd1374](https://github.com/decred/dcrd/pull/1374))
- dcrjson: Remove unused vote bit concat codec funcs ([decred/dcrd1384](https://github.com/decred/dcrd/pull/1384))

dcrd command-line flags and configuration:

- multi: Correct clean and expand path handling ([decred/dcrd1186](https://github.com/decred/dcrd/pull/1186))

dcrctl utility changes:

- dcrctl: Fix --skipverify failing if rpc.cert not found ([decred/dcrd1163](https://github.com/decred/dcrd/pull/1163))

Documentation:

- hdkeychain: Correct hash algorithm in comment ([decred/dcrd1171](https://github.com/decred/dcrd/pull/1171))
- Fix typo in blockchain ([decred/dcrd1185](https://github.com/decred/dcrd/pull/1185))
- docs: Update node.js example for v8.11.1 LTS ([decred/dcrd1209](https://github.com/decred/dcrd/pull/1209))
- docs: Update txaccepted method in json_rpc_api.md ([decred/dcrd1242](https://github.com/decred/dcrd/pull/1242))
- docs: Correct blockmaxsize and blockprioritysize ([decred/dcrd1339](https://github.com/decred/dcrd/pull/1339))
- server: Correct comment in getblocks handler ([decred/dcrd1269](https://github.com/decred/dcrd/pull/1269))
- config: Fix typo ([decred/dcrd1274](https://github.com/decred/dcrd/pull/1274))
- multi: Fix badges in README ([decred/dcrd1277](https://github.com/decred/dcrd/pull/1277))
- stake: Correct comment in connectNode ([decred/dcrd1325](https://github.com/decred/dcrd/pull/1325))
- txscript: Update comments for removal of flags ([decred/dcrd1336](https://github.com/decred/dcrd/pull/1336))

Developer-related package changes:

- blockchain: CheckConnectBlockTemplate with tests ([decred/dcrd1086](https://github.com/decred/dcrd/pull/1086))
- addrmgr: Simplify package API ([decred/dcrd1136](https://github.com/decred/dcrd/pull/1136))
- txscript: Remove unused strict multisig flag ([decred/dcrd1203](https://github.com/decred/dcrd/pull/1203))
- txscript: Move sig hash logic to separate file ([decred/dcrd1174](https://github.com/decred/dcrd/pull/1174))
- txscript: Remove SigHashAllValue ([decred/dcrd1175](https://github.com/decred/dcrd/pull/1175))
- txscript: Decouple and optimize sighash calc ([decred/dcrd1179](https://github.com/decred/dcrd/pull/1179))
- wire: Remove TxSerializeWitnessValueSigning ([decred/dcrd1176](https://github.com/decred/dcrd/pull/1176))
- hdkeychain: Satisfy fmt.Stringer interface ([decred/dcrd1168](https://github.com/decred/dcrd/pull/1168))
- blockchain: Validate tx expiry in block context ([decred/dcrd1187](https://github.com/decred/dcrd/pull/1187))
- blockchain: rename ErrRegTxSpendStakeOut to ErrRegTxCreateStakeOut ([decred/dcrd1195](https://github.com/decred/dcrd/pull/1195))
- multi: Break coinbase dep on standardness rules ([decred/dcrd1196](https://github.com/decred/dcrd/pull/1196))
- txscript: Cleanup code for the substr opcode ([decred/dcrd1206](https://github.com/decred/dcrd/pull/1206))
- multi: use secp256k1 types and fields directly ([decred/dcrd1211](https://github.com/decred/dcrd/pull/1211))
- dcrec: add Pubkey func to secp256k1 and edwards elliptic curves ([decred/dcrd1214](https://github.com/decred/dcrd/pull/1214))
- blockchain: use secp256k1 functions directly ([decred/dcrd1212](https://github.com/decred/dcrd/pull/1212))
- multi: Replace btclog with slog ([decred/dcrd1216](https://github.com/decred/dcrd/pull/1216))
- multi: Define vgo modules ([decred/dcrd1223](https://github.com/decred/dcrd/pull/1223))
- chainhash: Define vgo module ([decred/dcrd1224](https://github.com/decred/dcrd/pull/1224))
- wire: Refine vgo deps ([decred/dcrd1225](https://github.com/decred/dcrd/pull/1225))
- addrmrg: Refine vgo deps ([decred/dcrd1226](https://github.com/decred/dcrd/pull/1226))
- chaincfg: Refine vgo deps ([decred/dcrd1227](https://github.com/decred/dcrd/pull/1227))
- multi: Return fork len from ProcessBlock ([decred/dcrd1233](https://github.com/decred/dcrd/pull/1233))
- blockchain: Panic on fatal assertions ([decred/dcrd1243](https://github.com/decred/dcrd/pull/1243))
- blockchain: Convert to full block index in mem ([decred/dcrd1229](https://github.com/decred/dcrd/pull/1229))
- blockchain: Optimize checkpoint handling ([decred/dcrd1230](https://github.com/decred/dcrd/pull/1230))
- blockchain: Optimize block locator generation ([decred/dcrd1237](https://github.com/decred/dcrd/pull/1237))
- multi: Refactor and optimize inv discovery ([decred/dcrd1239](https://github.com/decred/dcrd/pull/1239))
- peer: Minor function definition order cleanup ([decred/dcrd1247](https://github.com/decred/dcrd/pull/1247))
- peer: Remove superfluous dup version check ([decred/dcrd1248](https://github.com/decred/dcrd/pull/1248))
- txscript: export canonicalDataSize ([decred/dcrd1266](https://github.com/decred/dcrd/pull/1266))
- blockchain: Add BuildMerkleTreeStore alternative for MsgTx ([decred/dcrd1268](https://github.com/decred/dcrd/pull/1268))
- blockchain: Optimize exported header access ([decred/dcrd1273](https://github.com/decred/dcrd/pull/1273))
- txscript: Cleanup P2SH and stake opcode handling ([decred/dcrd1318](https://github.com/decred/dcrd/pull/1318))
- txscript: Significantly improve errors ([decred/dcrd1319](https://github.com/decred/dcrd/pull/1319))
- txscript: Remove pay-to-script-hash flag ([decred/dcrd1321](https://github.com/decred/dcrd/pull/1321))
- txscript: Remove DER signature verification flag ([decred/dcrd1323](https://github.com/decred/dcrd/pull/1323))
- txscript: Remove verify minimal data flag ([decred/dcrd1326](https://github.com/decred/dcrd/pull/1326))
- txscript: Remove script num require minimal flag ([decred/dcrd1328](https://github.com/decred/dcrd/pull/1328))
- txscript: Make PeekInt consistent with PopInt ([decred/dcrd1329](https://github.com/decred/dcrd/pull/1329))
- build: Add experimental support for vgo ([decred/dcrd1215](https://github.com/decred/dcrd/pull/1215))
- build: Update some vgo dependencies to use tags ([decred/dcrd1219](https://github.com/decred/dcrd/pull/1219))
- stake: add ExpiredByBlock to stake.Node ([decred/dcrd1221](https://github.com/decred/dcrd/pull/1221))
- server: Minor function definition order cleanup ([decred/dcrd1271](https://github.com/decred/dcrd/pull/1271))
- server: Convert CF code to use new inv discovery ([decred/dcrd1272](https://github.com/decred/dcrd/pull/1272))
- multi: add valueIn parameter to wire.NewTxIn ([decred/dcrd1287](https://github.com/decred/dcrd/pull/1287))
- txscript: Remove low S verification flag ([decred/dcrd1308](https://github.com/decred/dcrd/pull/1308))
- txscript: Remove unused old sig hash type ([decred/dcrd1309](https://github.com/decred/dcrd/pull/1309))
- txscript: Remove strict encoding verification flag ([decred/dcrd1310](https://github.com/decred/dcrd/pull/1310))
- blockchain: Combine block by hash functions ([decred/dcrd1330](https://github.com/decred/dcrd/pull/1330))
- multi: Continue conversion from chainec to dcrec ([decred/dcrd1304](https://github.com/decred/dcrd/pull/1304))
- multi: Remove unused secp256k1 sig parse parameter ([decred/dcrd1335](https://github.com/decred/dcrd/pull/1335))
- blockchain: Refactor db main chain idx to blk idx ([decred/dcrd1332](https://github.com/decred/dcrd/pull/1332))
- blockchain: Remove main chain index from db ([decred/dcrd1334](https://github.com/decred/dcrd/pull/1334))
- blockchain: Implement new chain view ([decred/dcrd1337](https://github.com/decred/dcrd/pull/1337))
- blockmanager: remove unused Pause() API ([decred/dcrd1340](https://github.com/decred/dcrd/pull/1340))
- chainhash: Remove dup code from hash funcs ([decred/dcrd1342](https://github.com/decred/dcrd/pull/1342))
- connmgr: Fix the ConnReq print out causing panic ([decred/dcrd1345](https://github.com/decred/dcrd/pull/1345))
- gcs: Pool MatchAny data allocations ([decred/dcrd1348](https://github.com/decred/dcrd/pull/1348))
- blockchain: Faster chain view block locator ([decred/dcrd1338](https://github.com/decred/dcrd/pull/1338))
- blockchain: Refactor to use new chain view ([decred/dcrd1344](https://github.com/decred/dcrd/pull/1344))
- blockchain: Remove unnecessary genesis block check ([decred/dcrd1368](https://github.com/decred/dcrd/pull/1368))
- chainhash: Update go build module support ([decred/dcrd1358](https://github.com/decred/dcrd/pull/1358))
- wire: Update go build module support ([decred/dcrd1359](https://github.com/decred/dcrd/pull/1359))
- addrmgr: Update go build module support ([decred/dcrd1360](https://github.com/decred/dcrd/pull/1360))
- chaincfg: Update go build module support ([decred/dcrd1361](https://github.com/decred/dcrd/pull/1361))
- connmgr: Refine go build module support ([decred/dcrd1363](https://github.com/decred/dcrd/pull/1363))
- secp256k1: Refine go build module support ([decred/dcrd1362](https://github.com/decred/dcrd/pull/1362))
- dcrec: Refine go build module support ([decred/dcrd1364](https://github.com/decred/dcrd/pull/1364))
- certgen: Update go build module support ([decred/dcrd1365](https://github.com/decred/dcrd/pull/1365))
- dcrutil: Refine go build module support ([decred/dcrd1366](https://github.com/decred/dcrd/pull/1366))
- hdkeychain: Refine go build module support ([decred/dcrd1369](https://github.com/decred/dcrd/pull/1369))
- txscript: Refine go build module support ([decred/dcrd1370](https://github.com/decred/dcrd/pull/1370))
- multi: Remove go modules that do not build ([decred/dcrd1371](https://github.com/decred/dcrd/pull/1371))
- database: Refine go build module support ([decred/dcrd1372](https://github.com/decred/dcrd/pull/1372))
- build: Refine build module support ([decred/dcrd1384](https://github.com/decred/dcrd/pull/1384))
- blockmanager: make pruning transactions consistent ([decred/dcrd1376](https://github.com/decred/dcrd/pull/1376))
- blockchain: Optimize reorg to use known status ([decred/dcrd1367](https://github.com/decred/dcrd/pull/1367))
- blockchain: Make block index flushable ([decred/dcrd1375](https://github.com/decred/dcrd/pull/1375))

Testing and Quality Assurance:

- addrmgr: Simplify tests for KnownAddress ([decred/dcrd1133](https://github.com/decred/dcrd/pull/1133))
- blockchain: move block validation rule tests into fullblocktests ([decred/dcrd1141](https://github.com/decred/dcrd/pull/1141))
- addrmgr: Test timestamp update during AddAddress ([decred/dcrd1137](https://github.com/decred/dcrd/pull/1137))
- txscript: Consolidate tests into txscript package ([decred/dcrd1177](https://github.com/decred/dcrd/pull/1177))
- txscript: Add JSON-based signature hash tests ([decred/dcrd1178](https://github.com/decred/dcrd/pull/1178))
- txscript: Correct JSON-based signature hash tests ([decred/dcrd1181](https://github.com/decred/dcrd/pull/1181))
- txscript: Add benchmark for sighash calculation ([decred/dcrd1179](https://github.com/decred/dcrd/pull/1179))
- mempool: Refactor pool membership test logic ([decred/dcrd1188](https://github.com/decred/dcrd/pull/1188))
- blockchain: utilize CalcNextReqStakeDifficulty in fullblocktests ([decred/dcrd1189](https://github.com/decred/dcrd/pull/1189))
- fullblocktests: add additional premine and malformed tests ([decred/dcrd1190](https://github.com/decred/dcrd/pull/1190))
- txscript: Improve substr opcode test coverage ([decred/dcrd1205](https://github.com/decred/dcrd/pull/1205))
- txscript: Convert reference tests to new format ([decred/dcrd1320](https://github.com/decred/dcrd/pull/1320))
- txscript: Remove P2SH flag from test data ([decred/dcrd1322](https://github.com/decred/dcrd/pull/1322))
- txscript: Remove DERSIG flag from test data ([decred/dcrd1324](https://github.com/decred/dcrd/pull/1324))
- txscript: Remove MINIMALDATA flag from test data ([decred/dcrd1327](https://github.com/decred/dcrd/pull/1327))
- fullblocktests: Add expired stake tx test ([decred/dcrd1184](https://github.com/decred/dcrd/pull/1184))
- travis: simplify Docker files ([decred/dcrd1275](https://github.com/decred/dcrd/pull/1275))
- docker: Add dockerfiles for running dcrd nodes ([decred/dcrd1317](https://github.com/decred/dcrd/pull/1317))
- blockchain: Improve spend journal tests ([decred/dcrd1246](https://github.com/decred/dcrd/pull/1246))
- txscript: Cleanup and add tests for left opcode ([decred/dcrd1281](https://github.com/decred/dcrd/pull/1281))
- txscript: Cleanup and add tests for right opcode ([decred/dcrd1282](https://github.com/decred/dcrd/pull/1282))
- txscript: Cleanup and add tests for the cat opcode ([decred/dcrd1283](https://github.com/decred/dcrd/pull/1283))
- txscript: Cleanup and add tests for rotr opcode ([decred/dcrd1285](https://github.com/decred/dcrd/pull/1285))
- txscript: Cleanup and add tests for rotl opcode ([decred/dcrd1286](https://github.com/decred/dcrd/pull/1286))
- txscript: Cleanup and add tests for lshift opcode ([decred/dcrd1288](https://github.com/decred/dcrd/pull/1288))
- txscript: Cleanup and add tests for rshift opcode ([decred/dcrd1289](https://github.com/decred/dcrd/pull/1289))
- txscript: Cleanup and add tests for div opcode ([decred/dcrd1290](https://github.com/decred/dcrd/pull/1290))
- txscript: Cleanup and add tests for mod opcode ([decred/dcrd1291](https://github.com/decred/dcrd/pull/1291))
- txscript: Update CSV to match tests in DCP0003 ([decred/dcrd1292](https://github.com/decred/dcrd/pull/1292))
- txscript: Introduce repeated syntax to test data ([decred/dcrd1299](https://github.com/decred/dcrd/pull/1299))
- txscript: Allow multi opcode test data repeat ([decred/dcrd1300](https://github.com/decred/dcrd/pull/1300))
- txscript: Improve and correct some script tests ([decred/dcrd1303](https://github.com/decred/dcrd/pull/1303))
- main: verify network pow limits ([decred/dcrd1302](https://github.com/decred/dcrd/pull/1302))
- txscript: Remove STRICTENC flag from test data ([decred/dcrd1311](https://github.com/decred/dcrd/pull/1311))
- txscript: Cleanup plus tests for checksig opcodes ([decred/dcrd1315](https://github.com/decred/dcrd/pull/1315))
- blockchain: Add negative tests for forced reorg ([decred/dcrd1341](https://github.com/decred/dcrd/pull/1341))
- dcrjson: Consolidate tests into dcrjson package ([decred/dcrd1373](https://github.com/decred/dcrd/pull/1373))
- txscript: add additional data push op code tests ([decred/dcrd1346](https://github.com/decred/dcrd/pull/1346))
- txscript: add/group control op code tests ([decred/dcrd1349](https://github.com/decred/dcrd/pull/1349))
- txscript: add/group stack op code tests ([decred/dcrd1350](https://github.com/decred/dcrd/pull/1350))
- txscript: group splice opcode tests ([decred/dcrd1351](https://github.com/decred/dcrd/pull/1351))
- txscript: add/group bitwise logic, comparison & rotation op code tests ([decred/dcrd1352](https://github.com/decred/dcrd/pull/1352))
- txscript: add/group numeric related opcode tests ([decred/dcrd1353](https://github.com/decred/dcrd/pull/1353))
- txscript: group reserved op code tests ([decred/dcrd1355](https://github.com/decred/dcrd/pull/1355))
- txscript: add/group crypto related op code tests ([decred/dcrd1354](https://github.com/decred/dcrd/pull/1354))
- multi: Reduce testnet2 refs in unit tests ([decred/dcrd1387](https://github.com/decred/dcrd/pull/1387))

Misc:

- release: Bump for v1.3.0 ([decred/dcrd1388](https://github.com/decred/dcrd/pull/1388))
- multi: Correct typos found by misspell ([decred/dcrd1197](https://github.com/decred/dcrd/pull/1197))
- main: Correct mem profile error message ([decred/dcrd1183](https://github.com/decred/dcrd/pull/1183))
- multi: Use saner permissions saving certs ([decred/dcrd1263](https://github.com/decred/dcrd/pull/1263))
- server: only call time.Now() once ([decred/dcrd1313](https://github.com/decred/dcrd/pull/1313))
- multi: linter cleanup ([decred/dcrd1305](https://github.com/decred/dcrd/pull/1305))
- multi: Remove unnecessary network name funcs ([decred/dcrd1387](https://github.com/decred/dcrd/pull/1387))

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

0.1.0

Page 7 of 7

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.