bump version to 2.0.0 + change note to "descrition"
This commit is contained in:
parent
8c16460d29
commit
1d5b8ced99
10 changed files with 15 additions and 17 deletions
|
|
@ -765,7 +765,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
var satToBtc = 1 / 100000000;
|
||||
self.csvContent = [];
|
||||
self.csvFilename = 'Copay-' + (self.alias || self.walletName) + '.csv';
|
||||
self.csvHeader = ['Date', 'Destination', 'Note', 'Amount', 'Currency', 'Txid', 'Creator', 'Copayers'];
|
||||
self.csvHeader = ['Date', 'Destination', 'Description', 'Amount', 'Currency', 'Txid', 'Creator', 'Copayers'];
|
||||
|
||||
var _amount, _note, _copayers, _creator;
|
||||
data.forEach(function(it, index) {
|
||||
|
|
@ -794,7 +794,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
self.csvContent.push({
|
||||
'Date': formatDate(it.time * 1000),
|
||||
'Destination': formatString(it.addressTo),
|
||||
'Note': _note,
|
||||
'Description': _note,
|
||||
'Amount': _amount,
|
||||
'Currency': 'BTC',
|
||||
'Txid': it.txid,
|
||||
|
|
@ -807,7 +807,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
self.csvContent.push({
|
||||
'Date': formatDate(it.time * 1000),
|
||||
'Destination': 'Bitcoin Network Fees',
|
||||
'Note': '',
|
||||
'Description': '',
|
||||
'Amount': '-' + _fee,
|
||||
'Currency': 'BTC',
|
||||
'Txid': '',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue