Skip to content

Commit

Permalink
last seen
Browse files Browse the repository at this point in the history
change first seen receiving to last seen receiving
  • Loading branch information
coinables committed Dec 7, 2020
1 parent e9075dd commit 4becaf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wallet/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ <h2>Find UTXOs</h2>

console.log(historyreturn);

var outhtml = '<table><tr><td class="outputheader wideinput">Address</td><td class="outputheader">Satoshis</td><td class="outputheader">Received</td><td class="outputheader">First Seen</td><td class="outputheader">Last Spent</td><td class="outputheader">Label</td></tr>';
var outhtml = '<table><tr><td class="outputheader wideinput">Address</td><td class="outputheader">Satoshis</td><td class="outputheader">Received</td><td class="outputheader">Last Received</td><td class="outputheader">Last Spent</td><td class="outputheader">Label</td></tr>';

for(var i=0;i<balanceslength;i++){

Expand All @@ -144,7 +144,7 @@ <h2>Find UTXOs</h2>
}
}

outhtml += '<tr><td><input type="text" class="wideinput" value="'+Object.keys(historyreturn)[i]+'" id="'+i+'"></td><td><input type="number" value="'+historyreturn[Object.keys(historyreturn)[i]].balance+'" readonly></td><td><input type="number" value="'+historyreturn[Object.keys(historyreturn)[i]].received+'" readonly></td><td><input type="text" value="'+historyreturn[Object.keys(historyreturn)[i]].first_seen_receiving+'" readonly></td><td><input type="text" value="'+historyreturn[Object.keys(historyreturn)[i]].last_seen_spending+'" readonly></td><td><input type="text" value="'+keylabel+'" readonly></td></tr>';
outhtml += '<tr><td><input type="text" class="wideinput" value="'+Object.keys(historyreturn)[i]+'" id="'+i+'"></td><td><input type="number" value="'+historyreturn[Object.keys(historyreturn)[i]].balance+'" readonly></td><td><input type="number" value="'+historyreturn[Object.keys(historyreturn)[i]].received+'" readonly></td><td><input type="text" value="'+historyreturn[Object.keys(historyreturn)[i]].last_seen_receiving+'" readonly></td><td><input type="text" value="'+historyreturn[Object.keys(historyreturn)[i]].last_seen_spending+'" readonly></td><td><input type="text" value="'+keylabel+'" readonly></td></tr>';
}

outhtml += '</table>';
Expand Down

0 comments on commit 4becaf7

Please sign in to comment.