diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-07-01 18:38:23 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-07-01 18:38:48 +0200 |
| commit | 786ed114c2b4ff3c315476615b492ae7c7c9b51a (patch) | |
| tree | 5c8e0ff2ebbc89c965c4a5869332cae6b45489ea /src/script/script.h | |
| parent | Merge pull request #6354 (diff) | |
| parent | miner: rename UpdateRequestCount signal to ResetRequestCount (diff) | |
| download | discoin-786ed114c2b4ff3c315476615b492ae7c7c9b51a.tar.xz discoin-786ed114c2b4ff3c315476615b492ae7c7c9b51a.zip | |
Merge pull request #5994
a7b9623 miner: rename UpdateRequestCount signal to ResetRequestCount (Jonas Schnelli)
5496253 add CReserveScript to allow modular script keeping/returning (Jonas Schnelli)
087e65d fix GetScriptForMining() CReserveKey::keepKey() issue (Jonas Schnelli)
d0fc10a detach wallet from miner (Jonas Schnelli)
Diffstat (limited to 'src/script/script.h')
| -rw-r--r-- | src/script/script.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/script/script.h b/src/script/script.h index c09899aab..e39ca57f4 100644 --- a/src/script/script.h +++ b/src/script/script.h @@ -609,4 +609,13 @@ public: } }; +class CReserveScript +{ +public: + CScript reserveScript; + virtual void KeepScript() {} + CReserveScript() {} + virtual ~CReserveScript() {} +}; + #endif // BITCOIN_SCRIPT_SCRIPT_H |