Branch: refs/heads/master
Home: https://github.com/btcsuite/btcd
Commit: ce981f45c26c060048c8bc042fe19b934d12bf37
https://github.com/btcsuite/btcd/commit/ce981f45c26c060048c8bc042fe19b934d12bf37
Author: Dave Collins <[email protected]>
Date: 2015-11-30 (Mon, 30 Nov 2015)
Changed paths:
M cpuminer.go
M mempool.go
M mining.go
A mining/README.md
A mining/mining.go
A mining/policy.go
M rpcserver.go
M server.go
Log Message:
-----------
mining: Create skeleton package.
This creates a skeleton mining package that simply contains a few of the
definitions used by the mining and mempool code.
This is a step towards decoupling the mining code from the internals of
btcd and ultimately will house all of the code related to creating block
templates and CPU mining.
The main reason a skeleton package is being created before the full
blown package is ready is to avoid blocking mempool separation which
relies on these type definitions.