mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 01:13:22 +01:00
Fix wording in changelog and bug
This commit is contained in:
parent
0d4bfe8038
commit
ece1ecb90b
@ -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.
|
||||
|
@ -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())
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user