mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
Add basic issuance boilerplate
This commit is contained in:
parent
f81122f948
commit
fde9fe1010
4 changed files with 43 additions and 12 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue