aboutsummaryrefslogtreecommitdiff
path: root/src/auxpow.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove unreachable code.Daniel Kraft2014-11-211-18/+6
| | | | | | The removed case (pcHead == script.end()) can never be reached, since we explicitly error out above if that is the case. It is legacy from Namecoin's merge-mining, which does not forbid this case earlier.
* Correct AuxPoW coinbase script concatenation operators.Ross Nicoll2014-08-171-1/+5
| | | | | | MakeCoinbaseWithAux() was incorrectly using << to add a CScript onto a CScript instead of the + operator. Operators corrected and structure now more closely reflects coinbase script assembly done elsewhere.
* Correct format of AuxPow coinbase script.Ross Nicoll2014-08-171-3/+4
| | | | | AuxPoW coinbase scripts now include block height as per BIP0034, which also resolves issue of transactions being generated which collide.
* Import Vince Durham's aux proof of work implementation.Nell Hardcastle2014-08-011-0/+132