diff options
| author | Gavin Andresen <[email protected]> | 2011-10-03 13:05:43 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-12-19 12:40:19 -0500 |
| commit | e679ec969c8b22c676ebb10bea1038f6c8f13b33 (patch) | |
| tree | c584f1a152c376ca0df93261d447c5b719449508 /src/db.cpp | |
| parent | Global fixture to send output to console instead of debug.log (diff) | |
| download | discoin-e679ec969c8b22c676ebb10bea1038f6c8f13b33.tar.xz discoin-e679ec969c8b22c676ebb10bea1038f6c8f13b33.zip | |
OP_EVAL implementation
OP_EVAL is a new opcode that evaluates an item on the stack as a script.
It enables a new type of bitcoin address that needs an arbitrarily
complex script to redeem.
Diffstat (limited to 'src/db.cpp')
| -rw-r--r-- | src/db.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/db.cpp b/src/db.cpp index 7195e065e..52ad695c7 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -934,6 +934,15 @@ int CWalletDB::LoadWallet(CWallet* pwallet) if (nMinVersion > CLIENT_VERSION) return DB_TOO_NEW; } + else if (strType == "cscript") + { + uint160 hash; + ssKey >> hash; + std::vector<unsigned char> script; + ssValue >> script; + if (!pwallet->LoadCScript(hash, script)) + return DB_CORRUPT; + } } pcursor->close(); } |