Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Apr 4, 2020
1 parent f0a1185 commit 0a583e2
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/companion.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export default class CompanionAppListener {
const memo = !inpTx.memo || inpTx.memo.trim() === '' ? null : inpTx.memo;

// The lightclient expects zats (and not ZEC)
sendingAmount = parseInt(sendingAmount * 10 ** 8);
sendingAmount = parseInt(sendingAmount * 10 ** 8, 10);

// Build a sendJSON object
const sendJSON = [];
Expand Down
2 changes: 1 addition & 1 deletion app/components/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class Sidebar extends PureComponent<Props, State> {
openErrorModal(
'Zecwallet Lite',
<div className={cstyles.verticalflex}>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.1.4</div>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.1.5</div>
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.</div>
<div className={cstyles.margintoplarge}>
The MIT License (MIT) Copyright (c) 2018-2020 Zecwallet
Expand Down
2 changes: 0 additions & 2 deletions app/components/Transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ const TxModalInternal = ({ modalIsOpen, tx, closeModal, currencyName, zecPrice,
}
}

console.log('replyto is', replyTo);

return (
<div key={address} className={cstyles.verticalflex}>
<div className={[cstyles.sublight].join(' ')}>Address</div>
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zecwallet-lite",
"productName": "Zecwallet Lite",
"version": "1.1.4",
"version": "1.1.5",
"description": "Zecwallet Lite",
"main": "./main.prod.js",
"author": {
Expand Down
6 changes: 5 additions & 1 deletion app/rpc.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export default class RPC {
const listStr = native.litelib_execute('list', '');
const listJSON = JSON.parse(listStr);

const txlist = listJSON.map(tx => {
let txlist = listJSON.map(tx => {
const transaction = new Transaction();

const type = tx.outgoing_metadata ? 'sent' : 'receive';
Expand Down Expand Up @@ -270,6 +270,10 @@ export default class RPC {
return transaction;
});

// There's an issue where there are "blank" sent transactions transactions, filter them out.
txlist = txlist.filter(tx => !(tx.type === 'sent' && tx.amount < 0 && tx.detailedTxns.length === 0));

// Sort the list by confirmations
txlist.sort((t1, t2) => t1.confirmations - t2.confirmations);

this.fnSetTransactionsList(txlist);
Expand Down
2 changes: 1 addition & 1 deletion bin/printversion.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
echo "::set-env name=VERSION::1.1.4"
echo "::set-env name=VERSION::1.1.5"
2 changes: 1 addition & 1 deletion bin/printversion.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
VERSION="1.1.4"
VERSION="1.1.5"

echo "::set-env name=VERSION::$VERSION"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zecwallet-lite",
"productName": "Zecwallet Lite",
"version": "1.1.4",
"version": "1.1.5",
"description": "Zecwallet Lite (Electron version)",
"scripts": {
"build": "yarn neon && concurrently \"yarn build-main\" \"yarn build-renderer\"",
Expand Down

0 comments on commit 0a583e2

Please sign in to comment.