diff options
| author | Cory Fields <[email protected]> | 2014-10-28 17:47:18 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-10-31 01:19:37 -0400 |
| commit | d2e74c55bdd8cee6a0cca49aca0e2ab1a182c9b5 (patch) | |
| tree | e7b9bb9ee8b0aa0302389cc9d9c6b6e9a78d6836 /src/script/standard.h | |
| parent | boost: moveonly: move BIP32Hash to hash.h (diff) | |
| download | discoin-d2e74c55bdd8cee6a0cca49aca0e2ab1a182c9b5.tar.xz discoin-d2e74c55bdd8cee6a0cca49aca0e2ab1a182c9b5.zip | |
boost: moveonly: split CPubKey and friends to new files
Diffstat (limited to 'src/script/standard.h')
| -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 248b941a6..171178ce3 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -6,8 +6,7 @@ #ifndef H_BITCOIN_SCRIPT_STANDARD #define H_BITCOIN_SCRIPT_STANDARD -#include "key.h" -#include "script/script.h" +#include "uint256.h" #include "script/interpreter.h" #include <boost/variant.hpp> @@ -15,6 +14,7 @@ #include <stdint.h> class CScript; +class CKeyID; /** A reference to a CScript: the Hash160 of its serialization (see script.h) */ class CScriptID : public uint160 |