Merge pull request #5924 from cmgustavo/feat/top-up-card-info
Top up cards: adds last four digits of the card to description of tx
This commit is contained in:
commit
ddaa2258a8
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ angular.module('copayApp.controllers').controller('topUpController', function($s
|
||||||
var outputs = [];
|
var outputs = [];
|
||||||
var toAddress = payProDetails.toAddress;
|
var toAddress = payProDetails.toAddress;
|
||||||
var amountSat = payProDetails.amount;
|
var amountSat = payProDetails.amount;
|
||||||
var comment = 'Top up ' + amount + ' ' + currency + ' to Debit Card';
|
var comment = 'Top up ' + amount + ' ' + currency + ' to Debit Card (' + $scope.cardInfo.lastFourDigits + ')';
|
||||||
|
|
||||||
outputs.push({
|
outputs.push({
|
||||||
'toAddress': toAddress,
|
'toAddress': toAddress,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue