Fields: qty and raw in issue object

0 votes

I use build 1.0 alpha 20 protocol 10005

the command listassets return issueqty and issueraw in a answer instead of qty and raw (according to alpha 17 changes):

{
        "name" : "ASSET1",
        "issuetxid" : "...c45df1e305be6f49158045f...",
        "assetref" : "275-...",
        "multiple" : 10,
        "units" : 0.10000000,
        "open" : false,
        "details" : {
        },
        "issueqty" : 100000000000.00000000,
        "issueraw" : 1000000000000
    }

 

 

asked May 10, 2016 by alex

1 Answer

0 votes

That change doesn't relate to listassets but rather to issue subelements in other API responses. The point was that if there's a quantity inside an issue element, there's no need to call it issueqty - just redundant information.

answered May 10, 2016 by MultiChain
...