diff options
| author | Philip Kaufmann <[email protected]> | 2014-11-04 14:34:04 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-11-04 14:36:46 +0100 |
| commit | b4347f60352a7134f95a0f35e74607a167090516 (patch) | |
| tree | 9247f84b6fec039f5dd59c9b3763deb152951b13 /src/script | |
| parent | Merge pull request #5191 (diff) | |
| download | discoin-b4347f60352a7134f95a0f35e74607a167090516.tar.xz discoin-b4347f60352a7134f95a0f35e74607a167090516.zip | |
minor code style cleanup after recent merges
- add a missing license header
- correct some header orderings etc.
Diffstat (limited to 'src/script')
| -rw-r--r-- | src/script/standard.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/standard.h b/src/script/standard.h index faa774760..55a27881a 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -6,15 +6,15 @@ #ifndef BITCOIN_SCRIPT_STANDARD_H #define BITCOIN_SCRIPT_STANDARD_H -#include "uint256.h" #include "script/interpreter.h" +#include "uint256.h" #include <boost/variant.hpp> #include <stdint.h> -class CScript; class CKeyID; +class CScript; /** A reference to a CScript: the Hash160 of its serialization (see script.h) */ class CScriptID : public uint160 |