-
Notifications
You must be signed in to change notification settings - Fork 479
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
SCP-2545 - Marlowe Run Client - Implement transaction summary #3656
Conversation
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.
Nice! I am a bit troubled by to
being to the left of from
, not gonna lie, but other than that :)
if min' `mod` 60 == zero then | ||
show hours | ||
else | ||
show hours <> ":" <> formatMinutes (min' - hours * 60) |
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.
Nice, it even considers minute offsets, cool :)
Oh, I see now |
Yes, i dont like the order either, but i tried to be consistent with Deposit |
This PR adds a tooltip to the past actions card with the timezone information and includes an initial version of the transaction/payment summary.
While I was implementing this feature, I discovered a bug in the balance tab of the simple escrow example. When the buyer deposits and chooses to report a problem, there is a payment from the Sellers account to the Buyers account (which is shown by the new payment summary). But in the balances tab the money is removed from the Sellers account but is not added to the Buyers.
Pre-submit checklist: