Add basic issuance boilerplate

This commit is contained in:
Steven Roose 2019-03-19 19:50:34 +00:00
parent f81122f948
commit fde9fe1010
No known key found for this signature in database
GPG key ID: 7FC91380BB4CE800
4 changed files with 43 additions and 12 deletions

View file

@ -41,6 +41,8 @@ std::string CTxIn::ToString() const
str += strprintf(", scriptSig=%s", HexStr(scriptSig).substr(0, 24));
if (nSequence != SEQUENCE_FINAL)
str += strprintf(", nSequence=%u", nSequence);
if (!assetIssuance.IsNull())
str += strprintf(", %s", assetIssuance.ToString());
str += ")";
return str;
}