[script] Unit tests for IsMine

Does not test watch-only addresses.

Github-Pull: #11116
Rebased-From: 7a1e873b27
This commit is contained in:
Jim Posen
2017-08-22 17:47:59 -07:00
committed by MarcoFalke
parent 794a80eee3
commit 2c4ff35a8f
2 changed files with 363 additions and 6 deletions

View File

@@ -46,6 +46,8 @@ isminetype IsMine(const CKeyStore &keystore, const CTxDestination& dest, bool& i
isminetype IsMine(const CKeyStore &keystore, const CScript& scriptPubKey, bool& isInvalid, SigVersion sigversion)
{
isInvalid = false;
std::vector<valtype> vSolutions;
txnouttype whichType;
if (!Solver(scriptPubKey, whichType, vSolutions)) {