1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Fix wording in changelog and bug

This commit is contained in:
Frankie 2016-09-08 14:53:49 -07:00
parent 0d4bfe8038
commit ece1ecb90b
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
## Current Master
- Add network checks for unconfirmed transactions.
- Fix bug where pending transactions from Test net (or other networks) show up In Main net.
- Add fiat conversion values to more views.
- On fresh install, open a new tab with the MetaMask Introduction video.
- Block negative values from transactions.

View File

@ -35,7 +35,7 @@ function startApp (metamaskState, accountManager, opts) {
// if unconfirmed txs, start on txConf page
var unconfirmedTxsAll = txHelper(metamaskState.unconfTxs, metamaskState.unconfMsgs, metamaskState.network)
if (unconfirmedTxsAll > 0) {
if (unconfirmedTxsAll.length > 0) {
store.dispatch(actions.showConfTxPage())
}