Skip to content

Commit

Permalink
Make sure to pass the exchange host in the fee payment note
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandoabolafio committed May 23, 2020
1 parent 2e818bb commit 01525f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/core/notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type FeePaymentNote struct {
func newFeePaymentNote(subject, details string, severity db.Severity, dexAddr string) *FeePaymentNote {
return &FeePaymentNote{
Notification: db.NewNotification("feepayment", subject, details, severity),
Dex: dexAddr,
Dex: addrHost(dexAddr),
}
}

Expand Down
1 change: 1 addition & 0 deletions client/webserver/site/src/js/markets.js
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,7 @@ function statusString (order) {
case statusEpoch: return 'epoch'
case statusBooked: return order.cancelling ? 'cancelling' : 'booked'
case statusExecuted: return isLive ? 'settling' : 'executed'
case statusCanceled: return isLive ? 'canceled/settling' : 'canceled'
case statusRevoked: return isLive ? 'revoked/settling' : 'revoked'
}
}
Expand Down

0 comments on commit 01525f4

Please sign in to comment.