Skip to content

Commit

Permalink
Bug fix for missing exchange addresses in "listunspent" output
Browse files Browse the repository at this point in the history
  • Loading branch information
psolstice committed Nov 21, 2023
1 parent 2291e67 commit e59da9c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/script/interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript&
if (!fFirstOpCode)
return set_error(serror, SCRIPT_ERR_BAD_OPCODE);
// otherwise NOOP
printf("OP_EXCHANGEADDR\n");
break;

case OP_CHECKLOCKTIMEVERIFY:
Expand Down
1 change: 1 addition & 0 deletions src/script/ismine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ isminetype IsMine(const CKeyStore &keystore, const CScript& scriptPubKey, bool&
break;
}
case TX_PUBKEYHASH:
case TX_EXCHANGEADDRESS:
keyID = CKeyID(uint160(vSolutions[0]));
if (sigversion != SIGVERSION_BASE) {
CPubKey pubkey;
Expand Down

0 comments on commit e59da9c

Please sign in to comment.