Show short scriptPubKeys correctly
Previously bitcoin-qt's -debug transaction info was showing CTxOut([error]) It is valid for a scriptPubKey to be any size, for example simply OP_RETURN is valid and can be used to destroy a TXOUT to mining fees.
This commit is contained in:
parent
22de68dffc
commit
005609539b
1 changed files with 0 additions and 2 deletions
|
@ -63,8 +63,6 @@ uint256 CTxOut::GetHash() const
|
|||
|
||||
std::string CTxOut::ToString() const
|
||||
{
|
||||
if (scriptPubKey.size() < 6)
|
||||
return "CTxOut(error)";
|
||||
return strprintf("CTxOut(nValue=%"PRI64d".%08"PRI64d", scriptPubKey=%s)", nValue / COIN, nValue % COIN, scriptPubKey.ToString().substr(0,30).c_str());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue