aboutsummaryrefslogtreecommitdiff
path: root/src/script.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2013-06-23 12:10:17 -0700
committerPieter Wuille <[email protected]>2013-06-23 12:10:17 -0700
commitee4949794bb7f881a67266ad598edb5cf6019d31 (patch)
tree9d64630cc6d3c17944db14e79ffb662acdb7b3db /src/script.h
parentMerge pull request #2787 from Diapolo/makefiles (diff)
parentAdd dumpwallet and importwallet RPCs (diff)
downloaddiscoin-ee4949794bb7f881a67266ad598edb5cf6019d31.tar.xz
discoin-ee4949794bb7f881a67266ad598edb5cf6019d31.zip
Merge pull request #2592 from sipa/dumpwallet
Add dumpwallet and importwallet RPC commands
Diffstat (limited to 'src/script.h')
-rw-r--r--src/script.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script.h b/src/script.h
index f963467c9..03afe8b65 100644
--- a/src/script.h
+++ b/src/script.h
@@ -674,6 +674,7 @@ int ScriptSigArgsExpected(txnouttype t, const std::vector<std::vector<unsigned c
bool IsStandard(const CScript& scriptPubKey);
bool IsMine(const CKeyStore& keystore, const CScript& scriptPubKey);
bool IsMine(const CKeyStore& keystore, const CTxDestination &dest);
+void ExtractAffectedKeys(const CKeyStore &keystore, const CScript& scriptPubKey, std::vector<CKeyID> &vKeys);
bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet);
bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<CTxDestination>& addressRet, int& nRequiredRet);
bool SignSignature(const CKeyStore& keystore, const CScript& fromPubKey, CTransaction& txTo, unsigned int nIn, int nHashType=SIGHASH_ALL);