Please help me see if the bitcoin output for this asset transaction is normal. #1020
-
A strange phenomenon occurred when I made an asset transfer. I am not sure if this is normal.
thanks~! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Thanks for the proof, I was able to confirm there are assets in both outputs, index 0 and 1. |
Beta Was this translation helpful? Give feedback.
Okay, I looked at the
v0.3.3
code and I think you hit an edge case where thelnd
'sFundPsbt
wouldn't add a change output because the value left over would've been too small. And then the send logic just used the second output to commit the assets to.The whole send logic and fee estimation has been completely overhauled in the upcoming
v0.4.0
, so this might no longer be happening.But in any case, this shouldn't be an issue when attempting to further send the assets, everything should be accounted for properly.
So to answer your question: It's kind of normal since the on-chain BTC input amount was just very small and not enough to create a BTC-only change output, therefore the asset chang…