diff options
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 7195e065ea..f43b2a5656 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; + CScript script; + ssValue >> script; + if (!pwallet->LoadCScript(hash, script)) + return DB_CORRUPT; + } } pcursor->close(); } |