Skip to content
This repository was archived by the owner on Sep 5, 2020. It is now read-only.

Commit 0906eaf

Browse files
authored
Txhistory fixes (#4150)
* Fix undefined variable * Tx history window: removig always on top setting
1 parent 87640fc commit 0906eaf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interface/components/TxHistory/TxRow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class TxRow extends Component {
1212
valueToEtherAmount = value => {
1313
const theValue = web3.utils.isHex(value)
1414
? new BigNumber(web3.utils.hexToNumberString(value))
15-
: new BigNumber(tx.value);
15+
: new BigNumber(value);
1616
const etherAmount = theValue
1717
.dividedBy(new BigNumber('1000000000000000000'))
1818
.toFixed();

modules/windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ class Windows {
478478
electronOptions: {
479479
width: 580,
480480
height: 465,
481-
alwaysOnTop: true,
481+
alwaysOnTop: false,
482482
enableLargerThanScreen: false,
483483
resizable: true
484484
}

0 commit comments

Comments
 (0)