This commit is contained in:
jl777
2018-07-21 03:08:28 -11:00
parent 8506f4cc0f
commit de4e4047c6

View File

@@ -74,7 +74,8 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsi
if (scriptPubKey.IsPayToCryptoCondition()) {
if (scriptPubKey.MayAcceptCryptoCondition()) {
typeRet = TX_CRYPTOCONDITION;
vSolutionsRet.push_back(Hash160(scriptPubKey));
vector<unsigned char> hashBytes = Hash160(scriptPubKey);
vSolutionsRet.push_back(hashBytes);
return true;
}
return false;