aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-09-08 17:33:10 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2013-01-08 01:49:14 +0100
commitf1136200a67fc1df894d45fba51b40f748e0b889 (patch)
tree1c867524f6e9864f17024b817b68cbe8be78adf4 /src/main.h
parent429915bd0dfcdb03b13d9a3c2fb82d5401ef70ce (diff)
downloadbitcoin-f1136200a67fc1df894d45fba51b40f748e0b889.tar.xz
Move VerifySignature to main
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
index 8bceffbaf9..a098cc775c 100644
--- a/src/main.h
+++ b/src/main.h
@@ -164,6 +164,8 @@ bool SetBestChain(CBlockIndex* pindexNew);
bool ConnectBestBlock();
/** Create a new block index entry for a given block hash */
CBlockIndex * InsertBlockIndex(uint256 hash);
+/** Verify a signature */
+bool VerifySignature(const CCoins& txFrom, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType);