Skip to content

Commit

Permalink
Top up: adds last four digits of the card to description of tx
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgustavo committed Apr 24, 2017
1 parent 42cc2d0 commit 7a2180b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/controllers/topup.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ angular.module('copayApp.controllers').controller('topUpController', function($s
var outputs = [];
var toAddress = payProDetails.toAddress;
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({
'toAddress': toAddress,
Expand Down

0 comments on commit 7a2180b

Please sign in to comment.