dcrd/blockchain
cjepson 18acc1194f Add handling of modified getrawmempool RPC call and existslivetickets
getrawmempool has been modified to allow for the selection of specific
transaction types from the mempool. A new RPC call, existslivetickets,
has been added. This call takes a blob of ticket hashes and returns
a blob of bit flags specifying whether or not the tickets exist. This
allows for much faster getstakeinfo calls in the wallet.
2016-02-23 12:29:02 -05:00
..
stake Change ticket db desync from Error to Warn. 2016-02-22 11:13:49 -05:00
testdata Initial Decred Commit. 2016-02-07 14:00:12 -05:00
accept.go Resolve all remaining issues caught by goclean.sh 2016-02-15 11:24:00 -05:00
bench_test.go Work on improving the use of analysis tools in goclean.sh 2016-02-12 15:24:32 -05:00
blocklocator.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chain_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
chain.go Add handling of modified getrawmempool RPC call and existslivetickets 2016-02-23 12:29:02 -05:00
checkpoints.go Change CheckpointConfirmations to 4096. 2016-02-19 17:25:08 -05:00
common_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
common.go Work on improving the use of analysis tools in goclean.sh 2016-02-12 15:24:32 -05:00
difficulty_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
difficulty.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
doc.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
error_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
error.go Work on improving the use of analysis tools in goclean.sh 2016-02-12 15:24:32 -05:00
example_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
internal_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
log.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
mediantime_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
mediantime.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
merkle_test.go Work on improving the use of analysis tools in goclean.sh 2016-02-12 15:24:32 -05:00
merkle.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
notifications.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
process.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
README.md Initial Decred Commit. 2016-02-07 14:00:12 -05:00
reorganization_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
scriptval_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
scriptval.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
stakeext.go Resolve all remaining issues caught by goclean.sh 2016-02-15 11:24:00 -05:00
subsidy_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
subsidy.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
ticketlookup.go Resolve all remaining issues caught by goclean.sh 2016-02-15 11:24:00 -05:00
timesorter_test.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
timesorter.go Initial Decred Commit. 2016-02-07 14:00:12 -05:00
txlookup.go Work on improving the use of analysis tools in goclean.sh 2016-02-12 15:24:32 -05:00
validate_test.go Resolve all remaining issues caught by goclean.sh 2016-02-15 11:24:00 -05:00
validate.go Resolve all remaining issues caught by goclean.sh 2016-02-15 11:24:00 -05:00

blockchain

![ISC License] (http://img.shields.io/badge/license-ISC-blue.svg)

Package blockchain implements decred block handling and chain selection rules. The test coverage is currently only around 60%, but will be increasing over time. See test_coverage.txt for the gocov coverage report. Alternatively, if you are running a POSIX OS, you can run the cov_report.sh script for a real-time report. Package blockchain is licensed under the liberal ISC license.

There is an associated blog post about the release of this package here.

This package has intentionally been designed so it can be used as a standalone package for any projects needing to handle processing of blocks into the decred block chain.

Documentation

[GoDoc] (http://godoc.org/github.com/decred/dcrd/blockchain)

Full go doc style documentation for the project can be viewed online without installing this package by using the GoDoc site here: http://godoc.org/github.com/decred/dcrd/blockchain

You can also view the documentation locally once the package is installed with the godoc tool by running godoc -http=":6060" and pointing your browser to http://localhost:6060/pkg/github.com/decred/dcrd/blockchain

Installation

$ go get github.com/decred/dcrd/blockchain

Decred Chain Processing Overview

Before a block is allowed into the block chain, it must go through an intensive series of validation rules. The following list serves as a general outline of those rules to provide some intuition into what is going on under the hood, but is by no means exhaustive:

  • Reject duplicate blocks
  • Perform a series of sanity checks on the block and its transactions such as verifying proof of work, timestamps, number and character of transactions, transaction amounts, script complexity, and merkle root calculations
  • Compare the block against predetermined checkpoints for expected timestamps and difficulty based on elapsed time since the checkpoint
  • Save the most recent orphan blocks for a limited time in case their parent blocks become available
  • Stop processing if the block is an orphan as the rest of the processing depends on the block's position within the block chain
  • Perform a series of more thorough checks that depend on the block's position within the block chain such as verifying block difficulties adhere to difficulty retarget rules, timestamps are after the median of the last several blocks, all transactions are finalized, checkpoint blocks match, and block versions are in line with the previous blocks
  • Determine how the block fits into the chain and perform different actions accordingly in order to ensure any side chains which have higher difficulty than the main chain become the new main chain
  • When a block is being connected to the main chain (either through reorganization of a side chain to the main chain or just extending the main chain), perform further checks on the block's transactions such as verifying transaction duplicates, script complexity for the combination of connected scripts, coinbase maturity, double spends, and connected transaction values
  • Run the transaction scripts to verify the spender is allowed to spend the coins
  • Insert the block into the block database

Examples

License

Package blockchain is licensed under the copyfree ISC License.