aboutsummaryrefslogtreecommitdiff
path: root/src/script/standard.cpp
Commit message (Collapse)AuthorAgeFilesLines
* script: add a slew of includes all around and drop includes from script.hCory Fields2014-10-171-0/+1
| | | | Lots of files ended up with indirect includes from script.h.
* script: add ToByteVector() for converting anything with begin/endCory Fields2014-10-171-3/+3
| | | | This should move to a util header once their dependencies are cleaned up.
* script: move CScriptID to standard.h and add a ctor for creating them from ↵Cory Fields2014-10-171-0/+2
| | | | | | | | | | | | | | | | CScripts This allows for a reversal of the current behavior. This: CScript foo; CScriptID bar(foo.GetID()); Becomes: CScript foo; CScriptID bar(foo); This way, CScript is no longer dependent on CScriptID or Hash();
* Don't return an address for invalid pubkeysAndy Alness2014-10-061-2/+13
|
* Move CTxDestination from script/script to script/standardPieter Wuille2014-09-161-0/+47
|
* cleanup new script files (no code changes)Philip Kaufmann2014-09-141-2/+2
| | | | | | - add missing header end comments - ensure alphabetical ordering - update copyright year and license
* Separate script/standardjtimon2014-09-081-0/+254