You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed Bitcoin SPV wallet history has a bug:
namely it seems to be classifying Swap as Refund, while not showing the actual Refund transaction that is currently in mempool - you can see on screenshot above:
I received funds and then
there is a Refund without any prior Swap (there is Acceleration transaction I've issued after swap has been stuck for some time, and that's what got Swap transaction mined couple of hours later - but at that point Match was revoked and it switched to refunding flow as it should)
Match-card page shows all 3 transactions (Swap tx, separate Acceleration tx, pending Refund tx) correctly.
After browsing through the relevant code I'm thinking this adjustment should resolve the issue (it relaxes the requirement on Swap/Send transactions to have tx.Send == true and looks like this is how it's done for zcash as well)
The text was updated successfully, but these errors were encountered:
I've noticed Bitcoin SPV wallet history has a bug:
namely it seems to be classifying Swap as Refund, while not showing the actual Refund transaction that is currently in mempool - you can see on screenshot above:
Match-card page shows all 3 transactions (Swap tx, separate Acceleration tx, pending Refund tx) correctly.
After browsing through the relevant code I'm thinking this adjustment should resolve the issue (it relaxes the requirement on Swap/Send transactions to have
tx.Send == true
and looks like this is how it's done for zcash as well)The text was updated successfully, but these errors were encountered: