-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change transaction struct [Change inputs output to list] #151
Change transaction struct [Change inputs output to list] #151
Conversation
Can you please paste a before and after sample in the comment above please? |
If something has |
I found a bug in #150 Before this, I had been using a dictionary in the code for transaction detail to return the index of a certain input or output. However, I overlooked one thing, which is that NFTs/FTs can actually be merged in the same single UTXO. So, there is a need to modify the structure to make a single UTXO contain multiple atomicals of assets. Therefore, the structure of the interface's return is modified to a list. Merge FTs, txid: dbe6c961e1182fd0f6704ad1d592952db77b841e64c788662f25b7d57882cc3e
Merge NFTs: a10aa0f95d5ead4ad96b8060b91e5105fb5ebed89222b15ae7bca04546f606b2
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me overall, ready to merge.
And add is_cleanly_assigned into res struct