A clarification to add up

+1 vote

Hi Team,

Yes, As mentioned I was able to create multiple operations using raw transactions. But as per the scenario, Initially I tried to lock two assets and burn it using obtained transaction id and void. Then i added the new asset from these two burnt assets. Now i checked the addressbalance and found that two assets were deducted and the newly created asset has not been added up(This will be done once i execute sendrawtransaction). Everything is working fine.

My question is:- Will the assets which i refer to burn address will be demolished after executing createrawtransaction (or) will it be burnt after executing last command sendrawtransaction?

If it is burnt on executing sendrawtransaction, could you please let me know how could i verify this before executing this command?

asked Feb 22, 2017 by Sakthivel

1 Answer

0 votes

When you're building a raw transaction using the various APIs related to that, nothing actually happens on the blockchain unless you transmit it with sendrawtransaction, or you pass send for the action parameter that some of the APIs offer.

If you want to burn some assets, and issue another one at the same time, then you should do it in a single transaction. Otherwise you cannot make the issuance operation dependent on the burn one.

answered Feb 22, 2017 by MultiChain
...