Skip to content

Commit

Permalink
[script] Unit tests for IsMine
Browse files Browse the repository at this point in the history
Does not test watch-only addresses.

Github-Pull: #11116
Rebased-From: 7a1e873
  • Loading branch information
Jim Posen authored and MarcoFalke committed Oct 3, 2017
1 parent 794a80e commit 2c4ff35
Show file tree
Hide file tree
Showing 2 changed files with 363 additions and 6 deletions.
2 changes: 2 additions & 0 deletions src/script/ismine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down
Loading

0 comments on commit 2c4ff35

Please sign in to comment.